
/*
/* NB Fajl:'./components/core/text/custom-text/custom-text/custom-text.css.'
*/.nb-font-size-xs {
    font-size: var(--nb-font-size-xs);
}

.nb-font-size-s {
    font-size: var(--nb-font-size-s);
}

.nb-font-size-m {
    font-size: var(--nb-font-size-m);
}

.nb-font-size-l {
    font-size: var(--nb-font-size-l);
}

.nb-font-size-xl {
    font-size: var(--nb-font-size-xl);
}
/*
/* NB Fajl:'./components/core/info-box/empty-info-box-1/empty-info-box-1.css.'
*/:root {
    --nb-info-box-1-bg: var(--nb-color-gray-100);
    --nb-info-box-1-border-color: var(--nb-border-color);
    --nb-info-box-1-border-radius: var(--nb-border-radius-0);
}

.nb-info-box-1 {
    background: var(--nb-info-box-1-bg);
    border: var(--nb-border-width) var(--nb-border-style) var(--nb-info-box-1-border-color);
    border-radius: var(--nb-info-box-1-border-radius);
    padding: var(--nb-spacer-y) var(--nb-spacer-x);
}

.nb-info-box-1 .nb-paragraph{
    margin-bottom: 10px;
}

.nb-info-box-1 .nb-paragraph.nb-semibold{
    font-weight: var(--nb-font-semibold);
}

.nb-info-box-1 .nb-btn{
    margin-top: 10px;
}
/*
/* NB Fajl:'./components/product/product-attribute-1/product-attribute-1.css.'
*/.nb-product-attribute-v1 .nb-img {
    max-width: var(--nb-product-attribute-width);
    max-height: var(--nb-product-attribute-height);
}
/*
/* NB Fajl:'./components/product/product-discount/product-discount.css.'
*/.nb-caption-discount {
    position: relative;
    display: flex;
    flex-direction: column;
    max-width: var(--nb-discount-width);
    font-size: var(--nb-discount-font-size);
    font-family: var(--nb-discount-font-family);
    line-height: var(--nb-discount-line-height);
}

.nb-caption-discount .nb-discount {
    display: flex;
    justify-content: center;
    align-items: center;
    width: var(--nb-discount-width);
    height: var(--nb-discount-height);
    border-radius: var(--nb-border-radius-s);
    background-color: var(--nb-discount-bg);
    color: var(--nb-discount-color);
}

.nb-caption-discount .nb-additional-discount {
    display: flex;
    justify-content: center;
    align-items: center;
    width: var(--nb-discount-width);
    height: var(--nb-discount-height);
    border-radius: var(--nb-border-radius-s);
    background-color: var(--nb-additional-discount-bg);
    color: var(--nb-discount-color);
}

.nb-caption-discount.nb-caption-discount-s {
    max-width: var(--nb-discount-width-s);
}

.nb-caption-discount.nb-caption-discount-s .nb-discount,
.nb-caption-discount.nb-caption-discount-s .nb-additional-discount {
    width: var(--nb-discount-width-s);
    height: var(--nb-discount-height-s);
}

.nb-caption-discount.nb-caption-discount-m {
    max-width: var(--nb-discount-width-m);
}

.nb-caption-discount.nb-caption-discount-m .nb-discount,
.nb-caption-discount.nb-caption-discount-m .nb-additional-discount {
    width: var(--nb-discount-width-m);
    height: var(--nb-discount-height-m);
}

.nb-caption-discount.nb-caption-discount-l {
    max-width: var(--nb-discount-width-l);
}

.nb-caption-discount.nb-caption-discount-l .nb-discount,
.nb-caption-discount.nb-caption-discount-l .nb-additional-discount {
    width: var(--nb-discount-width-l);
    height: var(--nb-discount-height-l);
}

.nb-caption-discount .nb-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50% , -50%);
    color: var(--nb-discount-icon-color);
}

.nb-caption-discount.nb-caption-discount-square .nb-discount,
.nb-caption-discount.nb-caption-discount-square .nb-additional-discount {
    border-radius: var(--nb-border-0);
}

.nb-caption-discount-circle {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: var(--nb-discount-width-l);
    height: var(--nb-discount-height-l);
    border-radius: var(--nb-border-radius-full);
    background-color: var(--nb-discount-bg);
    color: var(--nb-discount-color);
    font-size: var(--nb-discount-font-size);
    font-family: var(--nb-discount-font-family);
    line-height: var(--nb-discount-line-height);
}

.nb-caption-discount-rectangle{
    max-width: var(--nb-discount-width-l);
    max-height: var(--nb-discount-height-l);
}
.nb-caption-discount.nb-caption-discount-rectangle .nb-discount,
.nb-caption-discount.nb-caption-discount-rectangle .nb-additional-discount {
    height: calc(var(--nb-discount-height)/2);
    border-radius: var(--nb-border-0);
}
/*
/* NB Fajl:'./components/core/messaging/NBAlert2/NBAlert2.css.'
*/.nb-alert-2 {
    padding: 30px 20px;
    background-color: var(--nb-alert-2-bg);
    color: var(--nb-alert-2-color);
    position: relative;
}

.nb-alert-2 .nb-icon {
    font-size: 32px;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%) translateY(-50%);
}

.nb-alert-2 .nb-icon:before {
    background-color: var(--nb-color-white);
    border-radius: var(--nb-border-radius-full);
}

.nb-alert-2 .nb-alert-2-content {
    font-size: var(--nb-alert-2-font-size);
    line-height: var(--nb-alert-2-line-height);
    font-weight: var(--nb-alert-2-font-weight);
    text-align: center;
}

.nb-alert-2.nb-alert-2-success,
.nb-alert-2.nb-alert-success {
    border: var(--nb-alert-2-success-border-width) var(--nb-border-style) var(--nb-alert-2-success-border-color);
}

.nb-alert-2.nb-alert-2-success .nb-icon,
.nb-alert-2.nb-alert-success .nb-icon {
    color: var(--nb-color-success);
}

.nb-alert-2.nb-alert-2-danger,
.nb-alert-2.nb-alert-danger {
    border: var(--nb-alert-2-danger-border-width) var(--nb-border-style) var(--nb-alert-2-danger-border-color);
}

.nb-alert-2.nb-alert-2-danger .nb-icon,
.nb-alert-2.nb-alert-danger .nb-icon {
    color: var(--nb-color-danger);
}

.nb-alert-2.nb-alert-2-info,
.nb-alert-2.nb-alert-info {
    border: var(--nb-alert-2-info-border-width) var(--nb-border-style) var(--nb-alert-2-info-border-color);
}

.nb-alert-2.nb-alert-2-info .nb-icon,
.nb-alert-2.nb-alert-info .nb-icon {
    color: var(--nb-color-info-dark);
}
/*
/* NB Fajl:'./_blocks/checkout/checkout-info/checkout-info-notice/checkout-info-notice-1/checkout-info-notice-1.css.'
*/.nb-checkout-info-notice-1 .nb-cart-status-notice-1 {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.nb-checkout-info-notice-1 .nb-cart-status-notice-1 .nb-continue-shopping-btn {
    min-width: 340px;
    margin: 20px auto 0;
    padding: 8px;
    font-size: var(--nb-font-size-14);
}

@media screen and (max-width: 576px) {
    .nb-checkout-info-notice-1 .nb-cart-status-notice-1 .nb-continue-shopping-btn {
        min-width: 100%;
    }
}
/*
/* NB Fajl:'./_blocks/element/text/text-editor/text-editor-1/text-editor-1.css.'
*/.nb-text-editor-1 .nb-html-editor{
    --nb-dt-rows: auto;
}

.nb-text-editor-1 .nb-html-editor h1 {
    margin-bottom: 10px;
}

/*
/* NB Fajl:'./components/complex/cart/cart-heading/cart-heading-1/cart-heading-1.css.'
*/:root {
    --nb-cart-heading-font-size: var(--nb-font-size-22);
    --nb-cart-heading-font-weight: var(--nb-font-semibold);
    --nb-cart-heading-color: var(--nb-text-color-primary);
}
.nb-cart-heading-1 .nb-title {
    font-size: var(--nb-cart-heading-font-size);
    font-weight: var(--nb-cart-heading-font-weight);
    color: var(--nb-cart-heading-color);
}

@media screen and (max-width: 786px) {
    :root {
        --nb-cart-heading-font-size: var(--nb-font-size-16);
    }
}
/*
/* NB Fajl:'./components/complex/user/login-or-register/login-or-register-2/login-or-register-2.css.'
*/:root {
    --nb-login-or-register-2-btn-bg: transparent;
    --nb-login-or-register-2-btn-color: var(--nb-link-color-secondary);
    --nb-login-or-register-2-btn-border-color: var(--nb-border-color);
    --nb-login-or-register-2-btn-font-size: var(--nb-btn-font-size);
    --nb-login-or-register-2-btn-font-weight: var(--nb-btn-font-weight);
    --nb-login-or-register-2-btn-padding-y: var(--nb-btn-padding-y);
    --nb-login-or-register-2-btn-padding-x: var(--nb-btn-padding-x);

    --nb-login-or-register-2-btn-active-bg: transparent;
    --nb-login-or-register-2-btn-active-color: var(--nb-link-color-secondary);
    --nb-login-or-register-2-btn-active-border-color: var(--nb-border-color);
}

.nb-login-or-register-2 .nb-btn-wrapper .nb-btn {
    color: var(--nb-login-or-register-2-btn-color);
    background-color: var(--nb-login-or-register-2-btn-bg);
    border-color: var(--nb-login-or-register-2-btn-border-color);
    font-weight: var(--nb-login-or-register-2-btn-font-weight);
    font-size: var(--nb-login-or-register-2-btn-font-size);
    padding: var(--nb-login-or-register-2-btn-padding-y) var(--nb-login-or-register-2-btn-padding-x);
}

.nb-login-or-register-2 .nb-btn-wrapper .nb-btn:hover,
.nb-login-or-register-2 .nb-btn-wrapper .nb-btn:active,
.nb-login-or-register-2 .nb-btn-wrapper .nb-btn:focus {
    color: var(--nb-login-or-register-2-btn-active-color);
    background-color: var(--nb-login-or-register-2-btn-active-bg);
    border-color: var(--nb-login-or-register-2-btn-active-border-color);
}

.nb-login-or-register-2 .nb-btn-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nb-login-or-register-2 .nb-btn-wrapper .nb-btn {
    --nb-btn-min-width: 220px;
}
/*
/* NB Fajl:'./components/complex/cart/cart-benefits/cart-benefits-description-and-cta-2/cart-benefits-description-and-cta-2.css.'
*/:root{
    --nb-cart-benefits-and-cta-2-listing-icon-color: var(--nb-color-black);
    --nb-cart-benefits-and-cta-2-listing-icon: '\e97f';
}

.nb-cart-benefits-and-cta-2 .nb-cart-heading-1 .nb-title {
    margin-bottom: 15px;
}

.nb-cart-benefits-and-cta-2 > .nb-benefit-wrapper {
    display: flex;
    align-items: center;
    background-color: var(--nb-cart-block-bg);
    gap: 10px;
    padding: 20px;
}

.nb-cart-benefits-and-cta-2 .nb-component.nb-img-wrapper {
    max-width: 100px;
    flex-shrink: 0;
}

.nb-cart-benefits-and-cta-2 .nb-text-wrapper {
    flex-grow: 1;
}

.nb-cart-benefits-and-cta-2 .nb-html-editor p{
    font-size: var(--nb-font-size-14);
}

.nb-cart-benefits-and-cta-2 .nb-html-editor img{
    width: 14px;
    height: 14px;
}

.nb-cart-benefits-and-cta-2 .nb-html-editor ul {
    margin-bottom: 0;
}

.nb-cart-benefits-and-cta-2 .nb-html-editor ul {
    list-style: none;
    padding-left: 0;
}

.nb-cart-benefits-and-cta-2 .nb-html-editor ul li{
    margin-bottom: 10px;
    font-size: var(--nb-font-size-14);
    display: flex;
    align-items: center;
}

.nb-cart-benefits-and-cta-2 .nb-html-editor ul li:last-child{
    margin-bottom: 0;
}

.nb-cart-benefits-and-cta-2 .nb-html-editor ul li:before{
    content: var(--nb-cart-benefits-and-cta-2-listing-icon);
    font-family: 'nbi-font';
    color: var(--nb-cart-benefits-and-cta-2-listing-icon-color);
    margin-right: 10px;
    vertical-align: middle;
    display: block;
}

.nb-cart-benefits-and-cta-2 .nb-info-wrapper {
    font-size: var(--nb-font-size-16);
    font-weight: var(--nb-font-semibold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 35px;
}

.nb-cart-benefits-and-cta-2 .nb-info-wrapper .nb-label-no-reg {
    text-align: center;
    padding: 0 20px;
}

.nb-cart-benefits-and-cta-2 .nb-border-left-no-reg,
.nb-cart-benefits-and-cta-2 .nb-border-right-no-reg {
    content: '';
    position: relative;
    height: 1px;
    background-color: var(--nb-border-color);
    width: fit-content;
    flex: 1 1;
}

.nb-cart-benefits-and-cta-2 .nb-border-right-no-reg{
    right: 0;
}

.nb-cart-benefits-and-cta-2 .nb-border-left-no-reg {
    left: 0;
}

@media screen and (max-width: 768px) {
    .nb-cart-benefits-and-cta-2 > .nb-benefit-wrapper {
        --nb-dt-rows: auto;
        flex-wrap: wrap;
        flex-direction: column;
        align-items: start;
        padding: 20px 15px;
    }

    .nb-cart-benefits-and-cta-2 .nb-info-wrapper,
    .nb-cart-benefits-and-cta-2 .nb-component.nb-img-wrapper {
        display: none;
    }

    .nb-cart-benefits-and-cta-2 .nb-login-or-register-2 {
        margin-top: 10px;
        width: 100%;
    }

    .nb-cart-benefits-and-cta-2 .nb-html-editor ul li{
        font-size: var(--nb-font-size-12);
    }

    .nb-cart-benefits-and-cta-2 .nb-login-or-register-2 .nb-btn {
        width: 100%;
    }
}

/*
/* NB Fajl:'./components/core/filter-checkbox/filter-checkbox-1/filter-checkbox-1.css.'
*/:root {
    --nb-filter-checkbox-1-border-width: var(--nb-border-width);
    --nb-filter-checkbox-1-border-color: var(--nb-color-gray-200);
    --nb-filter-checkbox-1-checked-border-color: var(--nb-color-gray-300);
    --nb-filter-checkbox-1-checked-bg: var(--nb-color-gray-200);
    --nb-filter-checkbox-1-border-radius: var(--nb-border-radius-xs);

    --nb-filter-checkbox-1-label-color: var(--nb-color-gray-700);
    --nb-filter-checkbox-1-label-hover-color: var(--nb-spec-color);
    --nb-filter-checkbox-1-label-font-size: var(--nb-font-size-13);
    --nb-filter-checkbox-1-label-font-weight: var(--nb-font-weight-400);
}

.nb-filter-checkbox-1 {
    padding-left: 0;
    cursor: pointer;
    margin-bottom: 0;
}

.nb-filter-checkbox-1 .nb-check {
    position: absolute;
    top: 3px;
    left: 22px;
    opacity: 0;
}

.nb-filter-checkbox-1 .nb-label {
    padding: 10px;
    display: flex;
    width: max-content;
    margin-left: 0;
    border: var(--nb-filter-checkbox-1-border-width) var(--nb-border-style) var(--nb-filter-checkbox-1-border-color);
    border-radius: var(--nb-filter-checkbox-1-border-radius);
    color: var(--nb-filter-checkbox-1-label-color);
    font-size: var(--nb-filter-checkbox-1-label-font-size);
    font-weight: var(--nb-filter-checkbox-1-label-font-weight);
}

.nb-filter-checkbox-1:hover .nb-label,
.nb-filter-checkbox-1:has(.nb-check:checked) .nb-label {
    background-color: var(--nb-filter-checkbox-1-checked-bg);
    border-color: var(--nb-filter-checkbox-1-checked-border-color);
}

/* Filter checkbox 2 */
:root {
    --nb-filter-checkbox-2-border-width: var(--nb-border-width);
    --nb-filter-checkbox-2-border-color: var(--nb-color-gray-200);
    --nb-filter-checkbox-2-checked-border-color: var(--nb-color-gray-300);
    --nb-filter-checkbox-2-checked-bg: var(--nb-color-gray-200);
    --nb-filter-checkbox-2-border-radius: var(--nb-border-radius-xs);

    --nb-filter-checkbox-2-label-color: var(--nb-color-gray-700);
    --nb-filter-checkbox-2-label-hover-color: var(--nb-spec-color);
    --nb-filter-checkbox-2-label-font-size: var(--nb-font-size-13);
    --nb-filter-checkbox-2-label-font-weight: var(--nb-font-weight-400);
}

.nb-filter-checkbox-2 {
    padding-left: 0;
    cursor: pointer;
    margin-bottom: 0;
}

.nb-filter-checkbox-2 .nb-check {
    position: absolute;
    top: 3px;
    left: 22px;
    opacity: 0;
}

.nb-filter-checkbox-2 .nb-label {
    padding: 0 2px;
    min-width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: max-content;
    margin-left: 0;
    border: var(--nb-filter-checkbox-2-border-width) var(--nb-border-style) var(--nb-filter-checkbox-2-border-color);
    border-radius: var(--nb-filter-checkbox-2-border-radius);
    color: var(--nb-filter-checkbox-2-label-color);
    font-size: var(--nb-filter-checkbox-2-label-font-size);
    font-weight: var(--nb-filter-checkbox-2-label-font-weight);
}

.nb-filter-checkbox-2:hover .nb-label,
.nb-filter-checkbox-2:has(.nb-check:checked) .nb-label {
    background-color: var(--nb-filter-checkbox-2-checked-bg);
    border-color: var(--nb-filter-checkbox-2-checked-border-color);
}
/*
/* NB Fajl:'./components/core-components/custom-fields/custom-select-field-1/custom-select-field-1.css.'
*/.nb-custom-select-field-1 {

}

.nb-custom-select-field-1 img {
    width: 35px;
    height: 35px;
    border-radius: var(--nb-border-radius-full);
}

.nb-custom-select-field-1 .nb-header-wrapper {
    display: flex;
    align-items: center;
    min-height: 50px;
    padding: 10px 40px 10px 10px;
    gap: 10px;
    cursor: pointer;
    border: var(--nb-border-width) var(--nb-border-style) var(--nb-border-color);
    border-radius: var(--nb-border-radius-8);
    position: relative;
}

.nb-custom-select-field-1 .nb-header-wrapper .nb-header-text {
    font-size: var(--nb-font-size-14);
}

.nb-custom-select-field-1 .nb-header-wrapper .nb-header-text span {
    font-weight: var(--nb-font-semibold);
    margin-left: 5px;
}

.nb-custom-select-field-1 .nb-header-wrapper .nb-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.nb-custom-select-field-1 .nb-options-wrapper {
    display: none;
    padding: 10px;
    max-height: 200px;
    overflow-y: auto;
    position: absolute;
    z-index: 2;
    background-color: var(--nb-color-white);
    width: 100%;
    border: var(--nb-border-width) var(--nb-border-style) var(--nb-border-color);
    border-top: unset;
    border-bottom-left-radius: var(--nb-border-radius-8);
    border-bottom-right-radius: var(--nb-border-radius-8);
}

.nb-custom-select-field-1 .nb-options-wrapper .nb-option-item-text {
    font-size: var(--nb-font-size-14);
    cursor: pointer;
}

.nb-custom-select-field-1 .nb-options-wrapper .nb-option-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.nb-custom-select-field-1 .nb-options-wrapper .nb-option-item:last-child {
    margin-bottom: 0px;
}

.nb-custom-select-field-1 .nb-options-wrapper.active {
    display: block;
}

.nb-custom-select-field-1 .nb-options-wrapper .nb-option-item-text:hover {
    color: var(--nb-spec-color);
}

.nb-custom-select-field-1:has(.nb-options-wrapper.active) .nb-header-wrapper {
    border-bottom-left-radius: unset;
    border-bottom-right-radius: unset;
}

/*
/* NB Fajl:'./components/complex/cart/delivery-on-cart/delivery-note-1/delivery-note-1.css.'
*/:root {
    --nb-delivery-note-1-label-font-size: var(--nb-font-size-14);
    --nb-delivery-note-1-label-font-weight: var(--nb-font-medium);
    --nb-delivery-note-1-label-color: var(--nb-text-color-primary);
}

.nb-delivery-note-1 .nb-label {
    font-size: var(--nb-delivery-note-1-label-font-size);
    font-weight: var(--nb-delivery-note-1-label-font-weight);
    color: var(--nb-delivery-note-1-label-color)
}
/*
/* NB Fajl:'./components/complex/cart/delivery-on-cart/delivery-option-2/delivery-option-parcel-machine-2/selected-parcel-machine-2/selected-parcel-machine-2.css.'
*/.nb-selected-parcel-machine-2  .nb-title {
    font-size: var(--nb-font-size-14);
    font-weight: var(--nb-font-semibold);
    margin-bottom: 5px;
}

.nb-selected-parcel-machine-2  .nb-description {
    font-size: var(--nb-font-size-13);
}
/*
/* NB Fajl:'./components/complex/cart/delivery-on-cart/delivery-option-2/delivery-option-parcel-machine-2/delivery-option-parcel-machine-2.css.'
*/:root {
    --nb-delivery-option-parcel-machine-2-btn-color: var(--nb-spec-color);
    --nb-delivery-option-parcel-machine-2-btn-border-color: var(--nb-spec-color);
    --nb-delivery-option-parcel-machine-2-btn-bg: transparent;

    --nb-delivery-option-parcel-machine-2-btn-active-color: var(--nb-color-white);
    --nb-delivery-option-parcel-machine-2-btn-active-border-color: var(--nb-spec-color);
    --nb-delivery-option-parcel-machine-2-btn-active-bg: var(--nb-spec-color);
}
.nb-delivery-option-parcel-machine-2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 15px;
    background-color: var(--nb-color-gray-100);
}

.nb-delivery-option-parcel-machine-2 .nb-title {
    font-size: var(--nb-font-size-14);
    font-weight: var(--nb-font-semibold);
    margin-bottom: 5px;
}

.nb-delivery-option-parcel-machine-2 .nb-description {
    font-size: var(--nb-font-size-13);
}

.nb-delivery-option-parcel-machine-2 .nb-btn {
    color: var(--nb-delivery-option-parcel-machine-2-btn-color);
    background: var(--nb-delivery-option-parcel-machine-2-btn-bg);
    border: var(--nb-border-width) var(--nb-border-style) var(--nb-delivery-option-parcel-machine-2-btn-border-color);
    min-width: 200px;
}

.nb-delivery-option-parcel-machine-2 .nb-btn:active,
.nb-delivery-option-parcel-machine-2 .nb-btn:hover,
.nb-delivery-option-parcel-machine-2 .nb-btn:focus {
    color: var(--nb-delivery-option-parcel-machine-2-btn-active-color);
    background: var(--nb-delivery-option-parcel-machine-2-btn-active-bg);
    border-color: var(--nb-delivery-option-parcel-machine-2-btn-active-border-color);
}
@media screen and (max-width: 768px) {
    .nb-delivery-option-parcel-machine-2 {
        flex-wrap: wrap;
        flex-direction: column;
        align-items: start;
        justify-content: start;
        padding: 10px;
    }

    .nb-delivery-option-parcel-machine-2 .nb-btn {
        width: 100%;
    }
}
/*
/* NB Fajl:'./components/complex/cart/delivery-on-cart/delivery-option-2/delivery-option-click-and-collect-2/delivery-option-click-and-collect-2.css.'
*/:root {
    --nb-delivery-option-click-and-collect-2-btn-color: var(--nb-spec-color);
    --nb-delivery-option-click-and-collect-2-btn-border-color: var(--nb-spec-color);
    --nb-delivery-option-click-and-collect-2-btn-bg: transparent;

    --nb-delivery-option-click-and-collect-2-btn-active-color: var(--nb-color-white);
    --nb-delivery-option-click-and-collect-2-btn-active-border-color: var(--nb-spec-color);
    --nb-delivery-option-click-and-collect-2-btn-active-bg: var(--nb-spec-color);
}
.nb-delivery-option-click-and-collect-2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 15px;
    background-color: var(--nb-color-gray-100);
}

.nb-delivery-option-click-and-collect-2 .nb-btn {
    color: var(--nb-delivery-option-click-and-collect-2-btn-color);
    background: var(--nb-delivery-option-click-and-collect-2-btn-bg);
    border: var(--nb-border-width) var(--nb-border-style) var(--nb-delivery-option-click-and-collect-2-btn-border-color);
    min-width: 200px;
}

.nb-delivery-option-click-and-collect-2 .nb-btn:active,
.nb-delivery-option-click-and-collect-2 .nb-btn:hover,
.nb-delivery-option-click-and-collect-2 .nb-btn:focus {
    color: var(--nb-delivery-option-click-and-collect-2-btn-active-color);
    background: var(--nb-delivery-option-click-and-collect-2-btn-active-bg);
    border-color: var(--nb-delivery-option-click-and-collect-2-btn-active-border-color);
}

.nb-delivery-option-click-and-collect-2 .nb-title {
    font-size: var(--nb-font-size-14);
    font-weight: var(--nb-font-semibold);
    margin-bottom: 5px;
}

.nb-delivery-option-click-and-collect-2 .nb-description {
    font-size: var(--nb-font-size-13);
}

@media screen and (max-width: 768px) {
    .nb-delivery-option-click-and-collect-2 {
        flex-wrap: wrap;
        flex-direction: column;
        align-items: start;
        justify-content: start;
        padding: 10px;
    }

    .nb-delivery-option-click-and-collect-2 .nb-btn {
        width: 100%;
    }
}
/*
/* NB Fajl:'./components/complex/cart/delivery-on-cart/delivery-option-show-description-link/delivery-option-show-description-link.css.'
*/:root {
    --nb-delivery-option-show-description-text-font-size: var(--nb-font-size-12);
    --nb-delivery-option-show-description-text-font-weight: var(--nb-font-medium);
    --nb-delivery-option-show-description-text-color: var(--nb-text-color-primary);
}

.nb-delivery-option-show-description {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.nb-delivery-option-show-description .custom-text {
    font-size: var(--nb-delivery-option-show-description-text-font-size);
    font-weight: var(--nb-delivery-option-show-description-text-font-weight);
    color: var(--nb-delivery-option-show-description-text-color);
    font-style: italic;
}
/*
/* NB Fajl:'./components/complex/cart/delivery-on-cart/delivery-option-3/delivery-option-3.css.'
*/.nb-delivery-option-3 {
    border: var(--nb-border-width) var(--nb-border-style) var(--nb-border-color);

    &+.nb-delivery-option-3:not(:has(.nb-radio:checked)){
        border-top: none;
    }
    .nb-radio {
        display: none;
    }

    .nb-form-radio-button,
    .nb-form-check {
        padding-left: 0;
        margin-bottom: 0;
        width: 100%;
    }

    .nb-delivery-option-title {
        font-size: var(--nb-font-size-14);
        font-weight: var(--nb-font-medium);
    }

    .nb-delivery-option-text-wrapper{
        display: flex;
        justify-content: space-between;
        width: 100%;
        align-items: center;
    }

    .nb-price-icon-wrapper {
        flex-shrink: 0;
        display: flex;
        align-items: center;
        gap: 10px;

        .nb-icon {
            font-size: 20px;
            border: var(--nb-border-width) var(--nb-border-style) var(--nb-border-color);
            border-radius: var(--nb-border-radius-full);
            background-color: var(--nb-color-white);
            width: 20px;
            height: 20px;
            display: inline-block;

            &:before {
                display: none;
            }
        }
    }

    &:has(.nb-radio:checked) .nb-price-icon-wrapper .nb-icon:before {
        display: block;
        color: var(--nb-check-checked-bg);
    }

    .nb-form-radio-button .nb-label {
        margin-left: 0;
        padding: 10px 15px;
        top: 0;
        flex-grow: 1;
        min-height: 53px;
        display: flex;
        align-items: center;
    }

    .nb-option-wrapper {
        display: flex;
        align-items: center;
        gap: 15px;
        width: 100%;
        img {
            max-width: 60px;
            max-height: 25px;
            flex-shrink: 0;
        }
    }

    &:has(.nb-radio:checked) {
        border-color: var(--nb-color-blue-700);

        .delivery-option-heading .nb-label{
            background-color: var(--nb-color-blue-100);
        }
    }

    > .nb-form-group{
        padding: 15px
    }
}


@media screen and (max-width: 768px) {
    .nb-delivery-option-3 {
        .nb-form-radio-button .nb-label {
            padding: 10px;
        }
        > .nb-form-group{
            padding: 10px
        }
    }
}
/*
/* NB Fajl:'./components/complex/cart/payment-on-cart/payment-name-selected-payment/payment-name-selected-payment.css.'
*/:root {
    --nb-payment-name-selected-payment-font-size: var(--nb-font-size-12);
    --nb-payment-name-selected-payment-font-weight: var(--nb-font-regular);
    --nb-payment-name-selected-payment-color: var(--nb-color-gray);
    --nb-payment-name-selected-payment-separator: '/';
}

.nb-payment-name-selected-payment {
    margin-left: 5px;
    display: flex;
    gap: 5px;
}

.nb-payment-name-selected-payment .nb-separator:before {
    content: var(--nb-payment-name-selected-payment-separator);
}

.nb-payment-name-selected-payment .nb-separator,
.nb-payment-name-selected-payment .nb-separator:before,
.nb-payment-name-selected-payment .nb-selected {
    font-size: var(--nb-payment-name-selected-payment-font-size);
    font-weight: var(--nb-payment-name-selected-payment-font-weight);
    color: var(--nb-payment-name-selected-payment-color);
}
/*
/* NB Fajl:'./components/complex/cart/payment-on-cart/payment-option/payment-option-card/payment-option-card.css.'
*/.nb-payment-option .save-card-info{
    margin-bottom: 10px;
}
/*
/* NB Fajl:'./components/complex/cart/payment-on-cart/payment-option/payment-option-voucher/payment-option-voucher.css.'
*/.nb-payment-option > .nb-btn{
    margin-bottom: 20px;
}
/*
/* NB Fajl:'./components/complex/cart/cart-voucher-box-2/cart-voucher-box-2.css.'
*/:root {
    --nb-cart-voucher-box-2-bg: var(--nb-color-white);
    --nb-cart-voucher-box-2-border-width: var(--nb-border-width);
    --nb-cart-voucher-box-2-border-color: var(--nb-border-color);
    --nb-cart-voucher-box-2-active-border-color: var(--nb-color-green);

    --nb-cart-voucher-box-2-label-font-size: var(--nb-font-size-12);
    --nb-cart-voucher-box-2-label-font-weight: var(--nb-body-font-weight);
    --nb-cart-voucher-box-2-label-color: var(--nb-text-color-primary);

    --nb-cart-voucher-box-2-value-font-size: var(--nb-font-size-12);
    --nb-cart-voucher-box-2-value-font-weight: var(--nb-font-bold);
    --nb-cart-voucher-box-2-value-color: var(--nb-text-color-primary);
}

.nb-cart-voucher-box-2 {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    background-color: var(--nb-cart-voucher-box-2-bg);
    border: var(--nb-cart-voucher-box-2-border-width) var(--nb-border-style) var(--nb-cart-voucher-box-2-border-color);
    align-items: center;
    position: relative;
}

.nb-cart-voucher-box-2 .nb-voucher-code-wrapper,
.nb-cart-voucher-box-2 .nb-voucher-price-wrapper {
    display: flex;
    flex-direction: column;
}

.nb-cart-voucher-box-2 .nb-voucher-code-label,
.nb-cart-voucher-box-2 .nb-voucher-price-label {
    font-size: var(--nb-cart-voucher-box-2-label-font-size);
    font-weight: var(--nb-cart-voucher-box-2-label-font-weight);
    color: var(--nb-cart-voucher-box-2-label-color);
}

.nb-cart-voucher-box-2 .nb-voucher-code-value,
.nb-cart-voucher-box-2 .nb-price-voucher {
    font-size: var(--nb-cart-voucher-box-2-value-font-size);
    font-weight: var(--nb-cart-voucher-box-2-value-font-weight);
    color: var(--nb-cart-voucher-box-2-value-color);
}

.nb-cart-voucher-box-2 .nb-btn {
    border-radius: var(--nb-border-radius-0);
    min-width: 85px;
}

.nb-cart-voucher-box-2:before,
.nb-cart-voucher-box-2:after {
    content: '';
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--nb-color-gray-100);
    border-radius: var(--nb-border-radius-full);
}

.nb-cart-voucher-box-2:before {
    left: -11px;
    border-right: var(--nb-cart-voucher-box-2-border-width) var(--nb-border-style) var(--nb-cart-voucher-box-2-border-color);
}

.nb-cart-voucher-box-2:after {
    right: -11px;
    border-left: var(--nb-cart-voucher-box-2-border-width) var(--nb-border-style) var(--nb-cart-voucher-box-2-border-color);
}

.nb-cart-voucher-box-2.checked,
.nb-cart-voucher-box-2.checked:before{
    border-color: var(--nb-cart-voucher-box-2-active-border-color);
}

.nb-cart-voucher-box-2.checked:after {
    content: '\F26B';
    font-family: bootstrap-icons;
    border: unset;
    font-size: 19px;
    color: var(--nb-cart-voucher-box-2-active-border-color);
    z-index: 2;
}

.nb-cart-voucher-box-2 .nb-btn {
    min-width: 70px;
    padding: 5px 0;
}

@media screen and (max-width: 425px) {
    .nb-cart-voucher-box-2 {
        flex-direction: column;
        align-items: unset;
        gap: 5px;
    }
}
/*
/* NB Fajl:'./components/complex/cart/cart-voucher-box-list/cart-voucher-box-list.css.'
*/.nb-cart-voucher-box-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.nb-cart-voucher-box-list > * {
    flex: 0 0 calc(50% - 10px);
}

@media screen and (max-width: 1699px) {
    .nb-cart-voucher-box-list > * {
        flex: 0 0 100%;
    }
}
/*
/* NB Fajl:'./components/complex/cart/cart-voucher-missing-funds-1/cart-voucher-missing-funds-1.css.'
*/:root {
    --nb-cart-voucher-missing-funds-1-icon-color: var(--nb-color-danger);
    --nb-cart-voucher-missing-funds-1-icon-size: var(--nb-font-size-20);

    --nb-cart-voucher-missing-funds-1-label-font-size: var(--nb-font-size-14);
    --nb-cart-voucher-missing-funds-1-label-font-weight: var(--nb-font-bold);
    --nb-cart-voucher-missing-funds-1-label-color: var(--nb-text-color-primary);

    --nb-cart-voucher-missing-funds-1-message-font-size: var(--nb-font-size-14);
    --nb-cart-voucher-missing-funds-1-message-font-weight: var(--nb-font-regular);
    --nb-cart-voucher-missing-funds-1-message-color: var(--nb-text-color-primary);
}

.nb-cart-voucher-missing-funds-1 {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    align-items: center;
}

.nb-cart-voucher-missing-funds-1 .nb-icon {
    color: var(--nb-cart-voucher-missing-funds-1-icon-color);
    font-size: var(--nb-cart-voucher-missing-funds-1-icon-size);
}

.nb-cart-voucher-missing-funds-1 .nb-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.nb-cart-voucher-missing-funds-1 .nb-info-wrapper .nb-missing-funds-label {
    font-size: var(--nb-cart-voucher-missing-funds-1-label-font-size);
    font-weight: var(--nb-cart-voucher-missing-funds-1-label-font-weight);
    color: var(--nb-cart-voucher-missing-funds-1-label-color);
}

.nb-cart-voucher-missing-funds-1 .nb-info-wrapper .nb-missing-funds-message {
    font-size: var(--nb-cart-voucher-missing-funds-1-message-font-size);
    font-weight: var(--nb-cart-voucher-missing-funds-1-message-font-weight);
    color: var(--nb-cart-voucher-missing-funds-1-message-color);
}

/*
/* NB Fajl:'./components/complex/cart/cart-voucher-sufficient-funds-1/cart-voucher-sufficient-funds-1.css.'
*/:root {
    --nb-cart-voucher-sufficient-funds-1-icon-color: var(--nb-color-green);
    --nb-cart-voucher-sufficient-funds-1-icon-size: var(--nb-font-size-20);

    --nb-cart-voucher-sufficient-funds-1-label-font-size: var(--nb-font-size-14);
    --nb-cart-voucher-sufficient-funds-1-label-font-weight: var(--nb-font-bold);
    --nb-cart-voucher-sufficient-funds-1-label-color: var(--nb-text-color-primary);

    --nb-cart-voucher-sufficient-funds-1-message-font-size: var(--nb-font-size-14);
    --nb-cart-voucher-sufficient-funds-1-message-font-weight: var(--nb-font-regular);
    --nb-cart-voucher-sufficient-funds-1-message-color: var(--nb-text-color-primary);
}

.nb-cart-voucher-sufficient-funds-1 {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    align-items: center;
}

.nb-cart-voucher-sufficient-funds-1 .nb-icon {
    color: var(--nb-cart-voucher-sufficient-funds-1-icon-color);
    font-size: var(--nb-cart-voucher-sufficient-funds-1-icon-size);
}

.nb-cart-voucher-sufficient-funds-1 .nb-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.nb-cart-voucher-sufficient-funds-1 .nb-info-wrapper .nb-sufficient-funds-label {
    font-size: var(--nb-cart-voucher-sufficient-funds-1-label-font-size);
    font-weight: var(--nb-cart-voucher-sufficient-funds-1-label-font-weight);
    color: var(--nb-cart-voucher-sufficient-funds-1-label-color);
}

.nb-cart-voucher-sufficient-funds-1 .nb-info-wrapper .nb-sufficient-funds-message {
    font-size: var(--nb-cart-voucher-sufficient-funds-1-message-font-size);
    font-weight: var(--nb-cart-voucher-sufficient-funds-1-message-font-weight);
    color: var(--nb-cart-voucher-sufficient-funds-1-message-color);
}

/*
/* NB Fajl:'./components/complex/cart/cart-voucher-payment-option/cart-voucher-payment-option.css.'
*/.nb-cart-voucher-payment-option-accordion.nb-accordion-3 .nb-accordion-button {
    padding: 20px;
}

.nb-cart-voucher-payment-option-accordion.nb-accordion-3 .nb-accordion-button .nb-toggle-icon {
    left: unset;
    right: 20px;
}

.nb-cart-voucher-payment-option-accordion.nb-accordion-3 .nb-accordion-item:has(.nb-accordion-button:not(.collapsed)) {
    background-color: var(--nb-color-gray-100);
}

.nb-cart-voucher-payment-option-accordion.nb-accordion-3 .nb-accordion-button:not(.collapsed) {
    background-image: unset;
}

.nb-cart-voucher-payment-option-accordion.nb-accordion-3 .nb-accordion-body {
    padding: 0 20px 20px;
}

.nb-cart-voucher-payment-option-accordion .nb-cart-voucher-form {
    margin-top: 15px;
    padding-top: 15px;
    max-width: 320px;
    border-top: var(--nb-border-width) var(--nb-border-style) var(--nb-border-color);
    display: flex;
    flex-direction: column;
}

.nb-cart-voucher-payment-option-accordion .nb-cart-voucher-form .nb-cart-voucher-form-title {
    font-size: var(--nb-font-size-14);
    font-weight: var(--nb-font-semibold);
    color: var(--nb-text-color-primary);
    margin-bottom: 20px;
}

.nb-cart-voucher-payment-option-accordion .nb-cart-voucher-form .nb-btn {
    max-width: 150px;
    border-radius: var(--nb-border-radius-xs);
}
/*
/* NB Fajl:'./components/complex/cart/payment-on-cart/payment-option-show-description-link/payment-option-show-description-link.css.'
*/:root {
    --nb-payment-option-show-description-text-font-size: var(--nb-font-size-12);
    --nb-payment-option-show-description-text-font-weight: var(--nb-font-medium);
    --nb-payment-option-show-description-text-color: var(--nb-text-color-primary);
}

.nb-payment-option-show-description {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.nb-payment-option-show-description .custom-text {
    font-size: var(--nb-payment-option-show-description-text-font-size);
    font-weight: var(--nb-payment-option-show-description-text-font-weight);
    color: var(--nb-payment-option-show-description-text-color);
    font-style: italic;
}
/*
/* NB Fajl:'./components/complex/cart/payment-on-cart/payment-option-3/payment-option-3.css.'
*/.nb-payment-option-3{
    .nb-radio {
        display: none;
    }

    .nb-form-radio-button,
    .nb-form-check {
        padding-left: 0;
        margin-bottom: 0;
        width: 100%;
    }

    &+.nb-payment-option-3:not(:has(.nb-radio:checked)) .nb-form-radio-button .nb-label{
        border-top: none;
    }

    .nb-payment-option-title {
        font-size: var(--nb-font-size-14);
        font-weight: var(--nb-font-medium);
    }

    .nb-icon-wrapper .nb-icon {
        font-size: 20px;
        border: var(--nb-border-width) var(--nb-border-style) var(--nb-border-color);
        border-radius: var(--nb-border-radius-full);
        background-color: var(--nb-color-white);
        width: 20px;
        height: 20px;
        display: inline-block;
    }

    .nb-icon-wrapper .nb-icon:before {
        display: none;
    }

    &:has(.nb-radio:checked) .nb-icon-wrapper .nb-icon:before {
        display: block;
    }

    &:has(.nb-radio:checked) .nb-icon-wrapper .nb-icon {
        border: unset;
        color: var(--nb-check-checked-bg);
    }

    &:has(.nb-radio:checked) .nb-form-radio-button .nb-label{
        border-color: var(--nb-color-blue-700);
        background: var(--nb-color-blue-100);
    }

    .nb-form-radio-button .nb-label {
        margin-left: 0;
        padding: 10px 15px;
        top: 0;
        flex-grow: 1;
        border: 1px solid var(--nb-border-color);
        min-height: 55px;
        display: flex;
        align-items: center;
    }

    .nb-payment-option-text-wrapper {
        display: flex;
        align-items: center;
        gap: 15px;
        justify-content: space-between;
        width: 100%;
    }

    .nb-option-wrapper {
        display: flex;
        align-items: center;
        gap: 15px;

        img {
            max-width: 60px;
            flex-shrink: 0;
        }
    }

    .nb-save-payment-card .nb-form-group .nb-label {
        background-color: unset;
    }
    .nb-save-payment-card .nb-form-group {
        margin-bottom: 10px;
        .nb-form-check {
            margin-bottom: 10px;
            padding-left: 20px;
        }
    }

    .nb-cart-voucher-box-list > * {
        flex: 0 0 calc(50% - 10px);
        gap: 10px;
    }

    .nb-cart-voucher-payment-option-accordion.nb-accordion-3 .nb-accordion-body {
        padding-top: 20px;
    }

    .nb-cart-payment-in-installments-2{
        max-width: 300px;
        margin-left: 75px;
    }
}

@media screen and (max-width: 1024px) {
    .nb-payment-option-3 .nb-cart-voucher-box-list > * {
        flex: 0 0 100%;
    }
}

@media screen and (max-width: 768px) {
    .nb-payment-option-3 .nb-payment-option-text-wrapper {
        flex-wrap: wrap;
        flex-direction: column;
        justify-content: start;
        align-items: start;
        position: static;
        padding-right: 20px;
    }

    .nb-payment-option-3 .nb-payment-option-text-wrapper .nb-icon {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
    }

    .nb-payment-option-3 .nb-form-radio-button .nb-label {
        padding: 10px;
    }
}

/*
/* NB Fajl:'./components/complex/elements/indicators/carousel-indicators/carousel-arrows-1/carousel-arrows-1.css.'
*/.nb-slider-arrows.nb-slider-arrows-1 .slider-arrow i.nb-arrow-left,
.nb-slider-arrows.nb-slider-arrows-1 .slider-arrow i.nb-arrow-right {
    width: 25px;
    height: 25px;
    border-radius: var(--nb-border-radius-full);
    box-shadow: 0px 0px 4px 0px #0000001A;
    background: var(--nb-color-white);
}
/*
/* NB Fajl:'./components/complex/elements/indicators/carousel-indicators/carousel-indicators/carousel-indicators.css.'
*//* Slider dots */

.nb-slider-dots .slick-dots > li{
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--nb-dots-color);
    position: relative;
    cursor: pointer;
    box-shadow: 0px 0px 0px 2px var(--nb-dots-shadow-color);
    -webkit-box-shadow: 0px 0px 0px 2px var(--nb-dots-shadow-color);
    -moz-box-shadow: 0px 0px 0px 2px var(--nb-dots-shadow-color);
}

.nb-slider-dots .slick-dots > li.slick-active{
    background-color: var(--nb-dots-active-color);
    box-shadow: 0px 0px 0px 2px var(--nb-dots-active-shadow-color);
    -webkit-box-shadow: 0px 0px 0px 2px var(--nb-dots-active-shadow-color);
    -moz-box-shadow: 0px 0px 0px 2px var(--nb-dots-active-shadow-color);
}

.nb-slider-dots .slick-dots > li + li{
    margin-left: 20px;
}

/* Slider inline indicators */

.nb-slider-indicators-inline .slick-dots {
    width: 100%;
    justify-content: flex-start;
}

.nb-slider-indicators-inline .slick-dots li {
    width: 100%;
    height: var(--nb-indicators-inline-height);
    border-radius: var(--nb-indicators-inline-border-radius);
    background: var(--nb-indicators-inline-bg);
    box-shadow: none;
}

.nb-slider-indicators-inline .slick-dots > li.slick-active{
    background: var(--nb-indicators-inline-active-bg);
    box-shadow: none;
}

.nb-slider-indicators-inline .slick-dots > li + li {
    margin-left: 0;
}

.nb-slider-indicators-inline .slick-dots > li:before {
    background-color: transparent;
}

/* Vertical indicators */

.nb-slider-dots.nb-slider-indicators-vertical .slick-dots{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nb-slider-dots.nb-slider-indicators-vertical .slick-dots li {
    border-radius: var(--nb-indicators-vertical-border-radius);
    background-color: var(--nb-indicators-vertical-bg);
    width: var(--nb-indicators-vertical-width);
    height: var(--nb-indicators-vertical-height);
}

.nb-slider-dots.nb-slider-indicators-vertical .slick-dots > li.slick-active{
    background-color: var(--nb-indicators-vertical-active-bg);
}

.nb-slider-dots.nb-slider-indicators-vertical .slick-dots > li:before{
    display: none;
}

.nb-slider-dots.nb-slider-indicators-vertical .slick-dots > li + li{
    margin-left: 0;
}
/* --- */

/* Absolute bottom left*/

.nb-slider-dots.nb-indicators-bottom-left{
    position: absolute;
    bottom: var(--nb-spacer-y);
    left: var(--nb-spacer-x);
}
.nb-slider-dots.nb-indicators-bottom-right{
    position: absolute;
    bottom: var(--nb-spacer-y);
    right: var(--nb-spacer-x);
}
/* --- */


/* horizontal scrollbar */

.nb-slider-indicators-inline-scroll::-webkit-scrollbar{
    height: var(--nb-scrollbar-height);
}
.nb-slider-indicators-inline-scroll::-webkit-scrollbar-track{
    background: var(--nb-scrollbar-track-bg);
}
.nb-slider-indicators-inline-scroll::-webkit-scrollbar-thumb{
    background: var(--nb-scrollbar-thumb-bg);
}

/* loader indicators */
.nb-slider-dots.loader-indicators .slick-dots > li + li{
    margin-left: 10px;
}

.nb-slider-dots.loader-indicators .nb-progress-slider-dot{
    .progress-ring__bg {
        fill: none;
        stroke: rgba(255, 255, 255, 0.1); /* pozadinski krug */
        stroke-width: 1;
    }
    .progress-ring__circle {
        fill: none;
        stroke: white;
        stroke-width: 1;
        stroke-linecap: round;
        transform: rotate(-90deg);
        transform-origin: 50% 50%;
        stroke-dasharray: 138;     /* biće postavljeno u JS */
        stroke-dashoffset: 138;    /* pun krug na početku */
        transition: stroke-dashoffset linear;
    }
    &>.nb-icon,
    &>span{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        font-size: 12px;
    }
    &>.nb-icon{
        display: none;
        font-size: 18px;
    }
}

.nb-slider-dots.loader-indicators .slick-active .nb-progress-slider-dot{
    &>span{
        display: none;
    }
    &.paused{
        .nb-icon.bi-play{
            display: flex;
        }
    }
    &:not(.paused) .nb-icon.bi-pause{
        display: flex;
    }
}
/*
/* NB Fajl:'./components/core/icon-with-text/icon-with-heading-and-text-1/icon-with-heading-and-text-1.css.'
*/.nb-icon-left-title-and-description-right-horizontal {
    display: flex;
    align-items: center;
}

.nb-icon-left-title-and-description-right-horizontal:last-of-type {
    margin-bottom: 0;
}

.nb-icon-left-title-and-description-right-horizontal .nb-title {
    margin: 0;
}

.nb-icon-left-title-and-description-right-horizontal .nb-paragraph {
    margin: 0;
}

.nb-icon-left-title-and-description-right-horizontal .nb-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--nb-spec-color);
}

.nb-icon-left-title-and-description-right-horizontal.nb-icon-left .nb-icon {
    margin-right: calc(var(--nb-spacer-x)/2);
}

.nb-icon-left-title-and-description-right-horizontal.nb-icon-right .nb-icon {
    order: 1;
    margin-left: calc(var(--nb-spacer-x)/2);
}

.nb-icon-left-title-and-description-right-horizontal .nb-content-wrapper {
    display: flex;
    flex-direction: column;
}

.nb-icon-left-title-and-description-right-horizontal.nb-icon-left-title-and-description-right-horizontal-bg {
    padding: calc(var(--nb-spacer)/2);
    background-color: var(--nb-color-gray-200);
}

/*
/* NB Fajl:'./components/complex/cart/cart-price/cart-price-courier/cart-price-courier.css.'
*/:root{
    --nb-cart-courier-price-color: var(--nb-text-color-primary);
    
    --nb-cart-courier-price-font-size: var(--nb-paragraph-s);
    --nb-cart-courier-price-line-height: var(--nb-body-line-height);
    --nb-cart-courier-price-font-weight: var(--nb-font-regular);

}

.nb-price-courier {
    color: var(--nb-cart-courier-price-color);
    font-size: var(--nb-cart-courier-price-font-size);
    line-height: var(--nb-cart-courier-price-line-height);
    font-weight: var(--nb-cart-courier-price-font-weight);
}


/*
/* NB Fajl:'./components/complex/cart/cart-price/cart-price-saving/cart-price-saving.css.'
*/:root{
    --nb-cart-item-saving-price-color: var(--nb-product-saving-price-color);

    --nb-cart-item-saving-price-font-size-xs: var(--nb-product-saving-price-font-size-xs);
    --nb-cart-item-saving-price-line-height-xs: var(--nb-product-saving-price-line-height-xs);
    --nb-cart-item-saving-price-font-weight-xs: var(--nb-product-saving-price-font-weight-xs);

    --nb-cart-item-saving-price-font-size-s: var(--nb-product-saving-price-font-size-s);
    --nb-cart-item-saving-price-line-height-s: var(--nb-product-saving-price-line-height-s);
    --nb-cart-item-saving-price-font-weight-s: var(--nb-product-saving-price-font-weight-s);

    --nb-cart-item-saving-price-font-size-m: var(--nb-product-saving-price-font-size-m);
    --nb-cart-item-saving-price-line-height-m: var(--nb-product-saving-price-line-height-m);
    --nb-cart-item-saving-price-font-weight-m: var(--nb-product-saving-price-font-weight-m);

    --nb-cart-item-saving-price-font-size-l: var(--nb-product-saving-price-font-size-l);
    --nb-cart-item-saving-price-line-height-l: var(--nb-product-saving-price-line-height-l);
    --nb-cart-item-saving-price-font-weight-l: var(--nb-product-saving-price-font-weight-l);
}

.nb-price-saving {
    color: var(--nb-cart-item-saving-price-color);
}

.nb-price-saving.nb-price-saving-xs {
    font-size: var(--nb-cart-item-saving-price-font-size-xs);
    line-height: var(--nb-cart-item-saving-price-line-height-xs);
    font-weight: var(--nb-cart-item-saving-price-font-weight-xs);
}

.nb-price-saving.nb-price-saving-s {
    font-size: var(--nb-cart-item-saving-price-font-size-s);
    line-height: var(--nb-cart-item-saving-price-line-height-s);
    font-weight: var(--nb-cart-item-saving-price-font-weight-s);
}

.nb-price-saving.nb-price-saving-m {
    font-size: var(--nb-cart-item-saving-price-font-size-m);
    line-height: var(--nb-cart-item-saving-price-line-height-m);
    font-weight: var(--nb-cart-item-saving-price-font-weight-m);
}

.nb-price-saving.nb-price-saving-l {
    font-size: var(--nb-cart-item-saving-price-font-size-l);
    line-height: var(--nb-cart-item-saving-price-line-height-l);
    font-weight: var(--nb-cart-item-saving-price-font-weight-l);
}

/*
/* NB Fajl:'./components/complex/cart/cart-price/cart-price-total/price-with-taxes/price-with-taxes.css.'
*/:root{
    --nb-cart-price-with-tax-color: var(--nb-text-color-primary);

    --nb-cart-price-with-tax-font-size: var(--nb-paragraph-m);
    --nb-cart-price-with-tax-line-height: var(--nb-body-line-height);
    --nb-cart-price-with-tax-font-weight: var(--nb-font-semibold);

}

.nb-price-with-taxes {
    color: var(--nb-cart-price-with-tax-color);
    font-size: var(--nb-cart-price-with-tax-font-size);
    line-height: var(--nb-cart-price-with-tax-line-height);
    font-weight: var(--nb-cart-price-with-tax-font-weight);
}


/*
/* NB Fajl:'./components/complex/cart/cart-price/cart-price-total/price-without-taxes/price-without-taxes.css.'
*/:root{
    --nb-cart-price-without-tax-color: var(--nb-text-color-primary);

    --nb-cart-price-without-tax-font-size: var(--nb-paragraph-m);
    --nb-cart-price-without-tax-line-height: var(--nb-body-line-height);
    --nb-cart-price-without-tax-font-weight: var(--nb-font-regular);

}

.nb-price-without-taxes {
    color: var(--nb-cart-price-without-tax-color);
    font-size: var(--nb-cart-price-without-tax-font-size);
    line-height: var(--nb-cart-price-without-tax-line-height);
    font-weight: var(--nb-cart-price-without-tax-font-weight);
}


/*
/* NB Fajl:'./components/complex/cart/cart-terms-of-use/terms-of-use-and-sale-checkbox/terms-of-use-and-sale-checkbox.css.'
*/.nb-terms-of-use-and-sale-checkbox {
    position: relative;
}

.nb-terms-of-use-and-sale-checkbox .parsley-errors-list.filled {
    bottom: -15px;
}

.nb-terms-of-use-and-sale-checkbox .nb-html-editor p {
    margin-bottom: 0;
}
/*
/* NB Fajl:'./components/core/cart/cart-step-1/cart-step-1.css.'
*/:root {

    --nb-step-basket-step-bg: var(--nb-color-gray-200);
    --nb-step-basket-step-color: var(--nb-color-gray);
    --nb-step-basket-step-font-size: var(--nb-paragraph-s);
    --nb-step-basket-step-width: 30px;
    --nb-step-basket-step-height: 30px;
    --nb-step-basket-step-border-radius: var(--nb-border-radius-full);
    --nb-step-basket-step-border-color: var(--nb-color-gray-200);

    --nb-step-basket-active-step-bg: var(--nb-spec-color);
    --nb-step-basket-active-step-color: var(--nb-color-white);
    --nb-step-basket-active-step-border-color: var(--nb-spec-color);

    --nb-step-basket-solved-step-bg: var(--nb-color-white);
    --nb-step-basket-solved-step-color: var(--nb-spec-color);
    --nb-step-basket-solved-step-border-color: var(--nb-spec-color);

    --nb-step-basket-step-title-font-size: var(--nb-paragraph-s);
    --nb-step-basket-step-title-color: var(--nb-color-gray);
    --nb-step-basket-active-step-title-color: var(--nb-color-dark);

}


.nb-step-basket .nb-step-number {
    width: var(--nb-step-basket-step-width);
    height: var(--nb-step-basket-step-height);
    background: var(--nb-step-basket-step-bg);
    border-radius: var(--nb-step-basket-step-border-radius);
    border: var(--nb-border-width) var(--nb-border-style) var(--nb-step-basket-step-border-color);
    text-align: center;
    line-height: calc(var(--nb-step-basket-step-height) - 2px);
    color: var(--nb-step-basket-step-color);
    margin: 0 auto 10px;
    position: relative;
    overflow: visible;
}

.nb-step-basket.active .nb-step-number {
    background: var(--nb-step-basket-active-step-bg);
    color: var(--nb-step-basket-active-step-color);
    border-color: var(--nb-step-basket-active-step-border-color);
}

.nb-step-basket.solved .nb-step-number {
    background: var(--nb-step-basket-solved-step-bg);
    color: var(--nb-step-basket-solved-step-color);
    border-color: var(--nb-step-basket-solved-step-border-color);
}

.nb-step-basket .nb-step-title {
    font-size: var(--nb-step-basket-step-title-font-size);
    color: var(--nb-step-basket-step-title-color);
    text-align: center;
}

.nb-step-basket.solved .nb-step-title,
.nb-step-basket.active .nb-step-title {
    color: var(--nb-step-basket-active-step-title-color);
}

.nb-step-basket.error-on-step .nb-step-number:after {
    content: '!';
    position: absolute;
    top: -13px;
    right: -8px;
    color: var(--nb-color-red);
    font-size: var(--nb-font-size-20);
}

@media screen and (max-width: 768px) {
    .nb-step-basket .nb-step-title{
        font-size: var(--nb-font-size-12);
    }
}
/*
/* NB Fajl:'./components/complex/cart/cart-step/previous-and-next-cart-step/previous-and-next-cart-step.css.'
*/:root{
    --nb-previous-cart-step-color: var(--nb-spec-color);
    --nb-previous-cart-step-border-color: var(--nb-btn-primary-border-color);
    --nb-previous-cart-step-bg-color: var(--nb-btn-bg);

    --nb-next-cart-step-color: var(--nb-btn-primary-color);
    --nb-next-cart-step-border-color: var(--nb-btn-primary-border-color);
    --nb-next-cart-step-bg-color: var(--nb-btn-primary-bg);

    --nb-previous-cart-step-color-hover: var(--nb-spec-color);
    --nb-previous-cart-step-border-color-hover: var(--nb-btn-primary-hover-border-color);
    --nb-previous-cart-step-bg-color-hover: var(--nb-btn-bg);

    --nb-next-cart-step-color-hover: var(--nb-btn-primary-hover-color);
    --nb-next-cart-step-border-color-hover: var(--nb-btn-primary-hover-border-color);
    --nb-next-cart-step-bg-color-hover: var(--nb-btn-primary-hover-bg);
}

.nb-previous-and-next-cart-step .nb-content-wrapper {
    display: flex;
    justify-content: space-between;
}

.nb-previous-and-next-cart-step .nb-btn {
    --nb-btn-min-width: 205px;
}
.nb-previous-and-next-cart-step .nb-prev-button-step{
    color: var(--nb-previous-cart-step-color);
    border-color: var(--nb-previous-cart-step-border-color);
    background-color: var(--nb-previous-cart-step-bg-color);
}

.nb-previous-and-next-cart-step .nb-prev-button-step:focus,
.nb-previous-and-next-cart-step .nb-prev-button-step:active,
.nb-previous-and-next-cart-step .nb-prev-button-step:hover{
    color: var(--nb-previous-cart-step-color-hover);
    border-color: var(--nb-previous-cart-step-border-color-hover);
    background-color: var(--nb-previous-cart-step-bg-color-hover);
}

.nb-previous-and-next-cart-step .nb-next-button-step{
    color: var(--nb-next-cart-step-color);
    border-color: var(--nb-next-cart-step-border-color);
    background-color: var(--nb-next-cart-step-bg-color);
}
.nb-previous-and-next-cart-step .nb-next-button-step:hover{
    color: var(--nb-next-cart-step-color-hover);
    border-color: var(--nb-next-cart-step-border-color-hover);
    background-color: var(--nb-next-cart-step-bg-color-hover);
}

@media (max-width: 576px) {
    .nb-previous-and-next-cart-step .nb-btn {
        --nb-btn-min-width: 160px;
    }

    .nb-previous-and-next-cart-step .nb-content-wrapper {
        gap: 10px;
    }
}
/*
/* NB Fajl:'./components/core/box/box-28/box-28.css.'
*/:root {
    --nb-box-28-bg-color: var(--nb-color-white);

    --nb-box-28-text-one-font-size: var(--nb-font-size-14);
    --nb-box-28-text-one-font-weight: var(--nb-font-medium);
    --nb-box-28-text-one-color: var(--nb-text-color-primary);

    --nb-box-28-text-two-font-size: var(--nb-font-size-12);
    --nb-box-28-text-two-font-weight: var(--nb-font-regular);
    --nb-box-28-text-two-color: var(--nb-text-color-primary);
}

.nb-box-28 {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    gap: 10px;
    background-color: var(--nb-box-28-bg-color);
    cursor: pointer;
}

.nb-box-28 .nb-content-wrapper.nb-info-wrapper {
    position: relative;
    padding-right: 40px;
    display: block;
    flex-grow: 1;
}

.nb-box-28 .nb-info-wrapper .nb-first-text {
    font-size: var(--nb-font-size-14);
    font-weight: var(--nb-font-medium);
    margin-bottom: 5px;
}

.nb-box-28 .nb-info-wrapper .nb-second-text {
    font-size: var(--nb-font-size-12);
}

.nb-box-28 .nb-info-wrapper .nb-icon {
    font-size: var(--nb-font-size-12);
}

.nb-box-28 .nb-img-wrapper {
    max-width: 60px;
    flex-shrink: 0;
}

.nb-box-28 .nb-info-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/*
/* NB Fajl:'./components/complex/cart/cart-code-selection/loyalty-verification-token-message-2/loyalty-verification-token-message-2.css.'
*/:root {
    --nb-verification-token-message-2-font-size: var(--nb-font-size-12);
    --nb-verification-token-message-2-font-weight: var(--nb-body-font-weight);
    --nb-verification-token-message-2-color: var(--nb-text-color-primary);
}

.nb-verification-token-message-2 {
    font-size: var(--nb-verification-token-message-2-font-size);
    font-weight: var(--nb-verification-token-message-2-font-weight);
    color: var(--nb-verification-token-message-2-color);
}
/*
/* NB Fajl:'./components/complex/cart/cart-code-selection/loyalty-verification-token-info/loyalty-verification-token-info.css.'
*/:root {
    --nb-verification-token-info-success-bg: var(--nb-color-green-100);
    --nb-verification-token-info-danger-bg: var(--nb-color-red-100);
    --nb-verification-token-info-info-bg: var(--nb-color-blue-100);
    --nb-verification-token-info-link-color: var(--nb-color-red);
}

.nb-verification-token-info {
    padding: 5px 10px;
    display: flex;
    gap: 10px;
    align-items: baseline;
}

.nb-verification-token-info .nb-icon {
    font-size: 14px;
    position: relative;
    top: 2px;
}

.nb-verification-token-info:has(.nb-verification-token-message-success) {
    background-color: var(--nb-verification-token-info-success-bg);
}

.nb-verification-token-info:has(.nb-verification-token-message-danger) {
    background-color: var(--nb-verification-token-info-danger-bg);
}

.nb-verification-token-info:has(.nb-verification-token-message-info) {
    background-color: var(--nb-verification-token-info-info-bg);
}

.nb-verification-token-info .nb-info-wrapper {
    line-height: 1;
}

.nb-verification-token-info .nb-info-wrapper .nb-btn {
    padding: 0;
    min-width: unset;
    width: unset;
    height: unset;
    min-height: unset;
    background-color: unset;
    text-decoration: underline;
    border: unset;
    color: var(--nb-verification-token-info-link-color);
    font-size: var(--nb-font-size-12);
    font-weight: var(--nb-font-semibold);
    display: inline;
}

.nb-verification-token-info .nb-verification-token-message-2{
    display: inline;
    padding-right: 5px;
    line-height: 1;
    font-style: italic;
}
/*
/* NB Fajl:'./components/complex/cart/cart-code-selection/action-loyalty-verification-form/action-loyalty-verification-form.css.'
*/.nb-action-loyalty-verification-form .nb-form-title {
    font-size: var(--nb-font-size-16);
    font-weight: var(--nb-font-semibold);
    margin-bottom: 10px;
}

.nb-action-loyalty-verification-form .nb-form-wrapper {
    display: flex;
    gap: 0;
}

.nb-action-loyalty-verification-form .header-wrapper {
    margin-top: 15px;
}

.nb-action-loyalty-verification-form .nb-form-wrapper .nb-form-group{
    margin-bottom: 0;
    flex-grow: 1;
}

.nb-action-loyalty-verification-form .nb-form-wrapper .nb-btn{
    flex-shrink: 0;
    margin-left: -5px;
}
/*
/* NB Fajl:'./components/complex/cart/cart-code-selection/action-loyalty-box-2/action-loyalty-box-2.css.'
*/:root {
    --nb-action-loyalty-box-2-loyalty-name-font-size: var(--nb-font-size-14);
    --nb-action-loyalty-box-2-loyalty-name-font-weight: var(--nb-font-medium);
    --nb-action-loyalty-box-2-loyalty-name-color: var(--nb-text-color-primary);

    --nb-action-loyalty-box-2-loyalty-code-font-size: var(--nb-font-size-12);
    --nb-action-loyalty-box-2-loyalty-code-font-weight: var(--nb-body-font-weight);
    --nb-action-loyalty-box-2-loyalty-code-color: var(--nb-text-color-primary);

}

.nb-action-loyalty-box-2 {
    cursor: pointer;
}

.nb-action-loyalty-box-2.checked {
    border: var(--nb-border-width) var(--nb-border-style) var(--nb-border-color);
}

.nb-action-loyalty-box-2 .nb-first-text {
    font-size: var(--nb-action-loyalty-box-2-loyalty-name-font-size);
    font-weight: var(--nb-action-loyalty-box-2-loyalty-name-font-weight);
    color: var(--nb-action-loyalty-box-2-loyalty-name-color);
}

.nb-action-loyalty-box-2 .nb-second-text {
    font-size: var(--nb-action-loyalty-box-2-loyalty-code-font-size);
    font-weight: var(--nb-action-loyalty-box-2-loyalty-code-font-weight);
    color: var(--nb-action-loyalty-box-2-loyalty-code-color);
}

.nb-action-loyalty-box-2 .nb-info-wrapper .nb-icon {
    width: 20px;
    height: 20px;
    border-radius: var(--nb-border-radius-full);
    border: var(--nb-border-width) var(--nb-border-style) var(--nb-border-color);
    background-color: var(--nb-color-white);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: var(--nb-font-size-20);
}

.nb-action-loyalty-box-2.checked .nb-info-wrapper .nb-icon {
    border: unset;
}

.nb-action-loyalty-box-2 .nb-info-wrapper .nb-icon:before {
    display: none;
}

.nb-action-loyalty-box-2.checked .nb-info-wrapper .nb-icon:before {
    display: block;
}

/*
/* NB Fajl:'./components/complex/cart/cart-code-selection/action-loyalty-list-2/action-loyalty-list-2.css.'
*/.nb-action-loyalty-list-2 > .nb-action-loyalty-box-2:not(:last-child) {
    margin-bottom: 15px;
}
/*
/* NB Fajl:'./components/complex/cart/cart-code-selection/loyalty-verification-token-message-1/loyalty-verification-token-message-1.css.'
*/:root {
    --nb-verification-token-message-font-size: var(--nb-font-size-14);
    --nb-verification-token-message-font-weight: var(--nb-body-font-weight);
    --nb-verification-token-message-color: var(--nb-text-color-primary);
    --nb-verification-token-message-success-color: var(--nb-color-green);
    --nb-verification-token-message-danger-color: var(--nb-color-red);
}

.nb-verification-token-message {
    font-size: var(--nb-verification-token-message-font-size);
    font-weight: var(--nb-verification-token-message-font-weight);
    color: var(--nb-verification-token-message-color);
}

.nb-verification-token-message.nb-verification-token-message-success {
    color: var(--nb-verification-token-message-success-color);
}

.nb-verification-token-message.nb-verification-token-message-danger {
    color: var(--nb-verification-token-message-danger-color);
}
/*
/* NB Fajl:'./components/complex/cart/cart-code-selection/loyalty-code-info-1/loyalty-code-info-1.css.'
*/.nb-loyalty-code-info-1 {
    background-color: var(--nb-color-info-light);
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 7px 15px;

}

.nb-loyalty-code-info-1 .nb-icon-info {
    font-size: var(--nb-font-size-14);
}

.nb-loyalty-code-info-1 .custom-text {
    font-size: var(--nb-font-size-12);
    margin-right: 5px;
}

.nb-loyalty-code-info-1 .nb-show-popup {
    font-weight: var(--nb-font-medium);
    text-decoration: underline;
    cursor: pointer;
    margin-right: 0px;
}

.nb-loyalty-code-info-1 .nb-popup-wrapper {
    display: none;
    position: absolute;
    right: 50%;
    transform: translateX(50%);
    bottom: 25px;
    background-color: var(--nb-color-white);
    z-index: 9;
    box-shadow: 0px 4px 4px 0px #0000002B;
    padding: 10px;
    min-width: 220px;
}


.nb-loyalty-code-info-1 .nb-popup-wrapper:after {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -20px;
    width: 0;
    height: 0;
    border-width: 10px;
    border-style: solid;
    border-color: var(--nb-color-white) transparent transparent transparent;
}

.nb-loyalty-code-info-1.nb-component .nb-content-wrapper.nb-text-wrapper {
    display: block
}

.nb-loyalty-code-info-1.nb-component .nb-content-wrapper.nb-text-wrapper > * {
    flex: 1 1 auto;
    text-align: left !important;
    display: inline-block;
}

.nb-loyalty-code-info-1 .nb-info-wrapper {
    position: relative;
}

.nb-loyalty-code-info-1 .nb-popup-wrapper .nb-img-wrapper {
    max-width: 200px;
}

.nb-loyalty-code-info-1 .nb-popup-wrapper .nb-icon {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 22px;
    height: 22px;
    text-align: center;
    line-height: 1;
    font-size: var(--nb-font-size-22);
    border-radius: var(--nb-border-radius-full);
    background-color: var(--nb-color-white);
    cursor: pointer;
}

.nb-loyalty-code-info-1 .nb-popup-wrapper.active {
    display: inline-block;
}

/*
/* NB Fajl:'./components/complex/cart/cart-code-selection/action-loyalty-form/action-loyalty-form.css.'
*/:root {
    --nb-action-loyalty-form-input-height: var(--nb-input-height);
    --nb-action-loyalty-form-input-border-color: var(--nb-input-border-color);
}

.nb-action-loyalty-form.nb-collapse .nb-form-wrapper {
    display: none;
    background-color: var(--nb-color-white);
    padding: 0 10px 10px;
}

.nb-action-loyalty-form .header-wrapper .nb-icon {
    display: none;
}

.nb-action-loyalty-form.nb-collapse .header-wrapper .nb-icon {
    display: block;
}

.nb-action-loyalty-form.nb-collapse .header-wrapper {
    background-color: var(--nb-color-white);
    padding: 15px 10px;
    margin-bottom: 0;
    cursor: pointer;
}

.nb-action-loyalty-form.nb-collapse.open .nb-form-wrapper {
    display: flex;
}

.nb-action-loyalty-form.nb-collapse.open .header-wrapper .nb-icon {
    transform: rotate(180deg);
}

.nb-action-loyalty-form .nb-loyalty-title {
    font-size: var(--nb-font-size-16);
    font-weight: var(--nb-font-semibold);
}

.nb-action-loyalty-form .header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.nb-action-loyalty-form .nb-form-wrapper {
    display: flex;
    gap: 0;
}

.nb-action-loyalty-form .nb-form-wrapper .nb-form-group{
    margin-bottom: 0;
    flex-grow: 1;
}

.nb-action-loyalty-form .nb-form-wrapper .nb-btn{
    flex-shrink: 0;
    margin-left: -5px;
    height: var(--nb-action-loyalty-form-input-height);
    display: flex;
    padding: 0 10px;
    align-items: center;
    justify-content: center;
    max-width: 230px;
    font-size: var(--nb-font-size-14);
}

.nb-action-loyalty-form .form-control.nb-input {
    height: var(--nb-action-loyalty-form-input-height);
    line-height: calc(var(--nb-action-loyalty-form-input-height) - 2 * var(--nb-input-border-width));
    border-color: var(--nb-action-loyalty-form-input-border-color);
}

.nb-action-loyalty-form .nb-float-label {
    line-height: calc(var(--nb-action-loyalty-form-input-height) - 2 * var(--nb-input-border-width));
}
/*
/* NB Fajl:'./components/complex/cart/cart-code-selection/action-loyalty-2/action-loyalty-2.css.'
*/.nb-action-loyalty-2 {
    --nb-action-loyalty-2-login-btn-bg: var(--nb-color-white);
    --nb-action-loyalty-2-login-btn-color: var(--nb-color-black);
    --nb-action-loyalty-2-login-btn-border-color: var(--nb-login-or-register-2-btn-border-color);

    --nb-action-loyalty-2-login-btn-active-bg: var(--nb-color-white);
    --nb-action-loyalty-2-login-btn-active-color: var(--nb-color-black);
    --nb-action-loyalty-2-login-btn-active-border-color: var(--nb-login-or-register-2-btn-border-color);
}

.nb-action-loyalty-2 .nb-box-28 .nb-text-wrapper .nb-icon {
    width: 20px;
    height: 20px;
    border-radius: var(--nb-border-radius-full);
    border: var(--nb-border-width) var(--nb-border-style) var(--nb-border-color);
    background-color: var(--nb-color-white);
    position: absolute;
    right: 0;
}

.nb-action-loyalty-2 .nb-box-28 .nb-text-wrapper .nb-icon:before {
    display: none;
}

.nb-action-loyalty-2 .nb-box-28 .nb-text-wrapper .nb-icon:before {
    display: block;
}

.nb-action-loyalty-2 .nb-action-loyalty-list-2 {
    margin-bottom: 20px;
}

.nb-action-loyalty-2 .nb-login-or-register-2 .nb-btn-wrapper {
    flex-direction: row;
    gap: 10px;
}

.nb-action-loyalty-2 .nb-login-or-register-2 .nb-btn-wrapper .nb-btn {
    --nb-btn-min-width: unset;
    flex: 1 1 50%;
    background-color: var(--nb-action-loyalty-2-login-btn-bg);
    color: var(--nb-action-loyalty-2-login-btn-color);
    border-color: var(--nb-action-loyalty-2-login-btn-border-color);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
}

.nb-action-loyalty-2 .nb-login-or-register-2 .nb-btn-wrapper .nb-btn .nb-icon {
    font-size: 18px;
}

.nb-action-loyalty-2 .nb-login-or-register-2 .nb-btn-wrapper .nb-btn:hover {
    background-color: var(--nb-action-loyalty-2-login-btn-active-bg);
    color: var(--nb-action-loyalty-2-login-btn-active-color);
    border-color: var(--nb-action-loyalty-2-login-btn-active-border-color);
}

.nb-action-loyalty-2 .nb-loyalty-points-selection-1 {
    margin-top: 15px;
}

@media screen and (max-width: 576px) {
    .nb-action-loyalty-2 .nb-login-or-register-2 .nb-btn-wrapper {
        flex-direction: column;
    }
}
/*
/* NB Fajl:'./components/complex/cart/cart-code-selection/checkout-code-selection-accordion-list-1/checkout-code-selection-accordion-list-1.css.'
*/.nb-checkout-code-selection-accordion-list-1 .nb-accordion-button .nb-header-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
}

.nb-checkout-code-selection-accordion-list-1 .nb-header-wrapper .nb-img-wrapper {
    max-width: 30px;
}

.nb-checkout-code-selection-accordion-list-1 .nb-accordion-button .nb-header-wrapper .nb-text-wrapper {
    display: block;
}

.nb-checkout-code-selection-accordion-list-1 .nb-accordion-button .nb-header-wrapper .nb-text-wrapper .nb-description {
    text-align: left;
}

.nb-checkout-code-selection-accordion-list-1 .nb-header-wrapper > .nb-text-wrapper > *:not(:last-child) {
    margin-bottom: 5px;
}

.nb-checkout-code-selection-accordion-list-1 .nb-header-wrapper .nb-title {
    font-size: var(--nb-font-size-14);
    font-weight: var(--nb-font-semibold);
}

.nb-checkout-code-selection-accordion-list-1 .nb-header-wrapper .nb-link {
    font-size: var(--nb-font-size-14);
    font-weight: var(--nb-font-semibold);
    color: var(--nb-text-color-primary);
    text-decoration: underline;
}

.nb-checkout-code-selection-accordion-list-1 .nb-accordion.nb-accordion-4 .accordion-button .nb-toggle-icon {
   right: 15px;
}

.nb-checkout-code-selection-accordion-list-1 > .nb-accordion > .nb-accordion-item.active > .nb-accordion-header > .accordion-button.collapsed .nb-toggle-icon:before {
    content: '\F4CA';
}

.nb-checkout-code-selection-accordion-list-1 .nb-header-wrapper .nb-description {
    font-size: var(--nb-font-size-12);
    font-weight: var(--nb-font-regular);
}

.nb-checkout-code-selection-accordion-list-1 .nb-accordion.nb-accordion-4 .nb-accordion-button,
.nb-checkout-code-selection-accordion-list-1 .nb-accordion.nb-accordion-4 .nb-accordion-button.collapsed {
    background-color: var(--nb-cart-block-bg);
    padding: 10px 15px;
}

.nb-checkout-code-selection-accordion-list-1 .nb-accordion.nb-accordion-4 .nb-accordion-body {
    background-color: var(--nb-cart-block-bg);
    padding: 20px 15px;
}

@media screen and (max-width: 768px) {
    .nb-checkout-code-selection-accordion-list-1 .nb-accordion.nb-accordion-4 .nb-accordion-body {
        padding: 15px;
    }
}
/*
/* NB Fajl:'./components/complex/cart/cart-summary/cart-summary-4/cart-summary-4.css.'
*/.nb-cart-summary-4 .nb-header-wrapper {
    background-color: var(--nb-cart-block-bg);
    padding: 12px 15px;
}

.nb-cart-summary-4 .nb-body-wrapper {
    border: var(--nb-border-width) var(--nb-border-style) var(--nb-cart-block-bg);
    padding: 15px;
}

.nb-cart-summary-4 .nb-footer-wrapper {
    background-color: var(--nb-cart-block-bg);
    padding: 15px;
}

.nb-cart-summary-4 .nb-body-wrapper .nb-text-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 15px;
}

.nb-cart-summary-4 .nb-body-wrapper .nb-body-top-wrapper {
    border-bottom: var(--nb-border-width) var(--nb-border-style) var(--nb-color-gray-100);
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.nb-cart-summary-4 .nb-body-wrapper .nb-text-wrapper .nb-paragraph {
    font-size: var(--nb-font-size-14);
}

.nb-cart-summary-4 .nb-body-wrapper .nb-text-wrapper > *{
    flex: 1;
}

.nb-cart-summary-4 .nb-body-wrapper .nb-text-wrapper > *:last-child{
    text-align: right;
}

.nb-cart-summary-4 .nb-body-wrapper .nb-price-saving {
    display: block;
}

.nb-cart-summary-4 .nb-body-wrapper .nb-text-wrapper:last-child{
    margin-bottom: 0;
}

.nb-cart-summary-4 .nb-footer-wrapper .nb-btn{
    width: 100%;
}

.nb-cart-summary-4 .total-value{
    font-weight: var(--nb-font-semibold);
}

.nb-cart-summary-4 .content-wrapper.nb-free-delivery-wrapper{
    display: flex;
    flex-direction: column;
}

.nb-cart-summary-4 .nb-text-wrapper .nb-price-without-taxes .nb-price-value {
    font-size: var(--nb-font-size-16);
}

.nb-cart-summary-4 .nb-text-wrapper .nb-price-value {
    font-weight: var(--nb-font-semibold);
    font-size: var(--nb-font-size-14);
}

.nb-cart-summary-4 .nb-body-wrapper .nb-text-wrapper .nb-total-label {
    font-size: var(--nb-font-size-16);
}

.nb-cart-summary-4 .nb-text-wrapper .nb-price-with-taxes .nb-price-value {
    font-weight: var(--nb-font-bold);
    font-size: var(--nb-font-size-20);
}
.nb-cart-summary-4 .nb-previous-and-next-cart-step .container {
    padding: 0;
}

.nb-cart-summary-4 .nb-footer-wrapper .nb-btn-form {
    margin-bottom: 15px;
}
.nb-cart-summary-4 .nb-previous-and-next-cart-step .nb-content-wrapper {
    flex-direction: column;
    gap: 15px;
}

.nb-cart-total-2 .nb-cart-payment-in-installments-1 {
    font-size: var(--nb-font-size-11);
    font-style: italic;
    margin-bottom: 10px;
}
body:has(.nb-till-free-delivery-2) .nb-back-to-products {
    display: none;
}

.nb-cart-total-2 .nb-previous-and-next-cart-step .nb-back-to-products {
    order: 1;
}

.nb-cart-total-2 .nb-previous-and-next-cart-step .nb-back-to-products {
    order: 1;
}

.nb-cart-total-2 .nb-previous-and-next-cart-step button.nb-prev-button-step {
    order: 3;
}

.nb-cart-total-2 .nb-previous-and-next-cart-step .nb-next-button-step {
    order: 2;
}
.nb-cart-summary-4 .nb-terms-of-use-and-sale-checkbox .nb-form-check {
    margin-bottom: 20px;
}
.nb-cart-summary-4 .nb-previous-and-next-cart-step .nb-back-to-products {
    display: none !important;
}
@media screen and (max-width: 1600px) {
    .nb-cart-summary-4 .nb-body-wrapper .nb-text-wrapper{
        margin-bottom: 10px;
    }
}
/*
/* NB Fajl:'./_blocks/element/link/text-link/text-link-grid-w-offcanvas-content-1/text-link-grid-w-offcanvas-content-1.css.'
*/.nb-text-link-grid-w-offcanvas-content-1 .nb-text-link-content-offcanvas-1 .nb-links-wrapper{
    display: flex;
    gap: 5px 38px;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.nb-text-link-grid-w-offcanvas-content-1 .nb-text-link-content-offcanvas-1 .nb-link{
    font-size: var(--nb-font-size-12);
    font-weight: var(--nb-font-weight-400);
    line-height: 20px;
    color: var(--nb-color-gray-900);
    text-decoration:underline;
    white-space: nowrap;
}

@media screen and (max-width: 576px) {

    .nb-text-link-grid-w-offcanvas-content-1 .nb-text-link-content-offcanvas-1 .nb-links-wrapper{
        gap: 5px 17px;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
    }
}

/*
/* NB Fajl:'./components/complex/cart/cart-item-name/cart-item-name.css.'
*/.nb-cart-item-name,
.nb-cart-item-name .nb-title{
    font-size: var(--nb-product-name-font-size);
    line-height: var(--nb-product-name-line-height);
    font-weight: var(--nb-product-name-font-weight);
    letter-spacing: var(--nb-product-name-letter-spacing);
    color: var(--nb-product-name-color);
    font-family: var(--nb-product-name-font-family);
    font-style: var(--nb-product-name-font-style);
    margin-bottom: 0;
    height: calc(var(--nb-dt-rows) * var(--nb-product-name-line-height) * var(--nb-product-name-font-size));
}

.nb-cart-item-name.nb-cart-item-name-s,
.nb-cart-item-name.nb-cart-item-name-s .nb-title {
    font-size: var(--nb-product-name-font-size-s);
    height: calc(var(--nb-dt-rows) * var(--nb-product-name-line-height) * var(--nb-product-name-font-size-s));

}

.nb-cart-item-name.nb-cart-item-name-m,
.nb-cart-item-name.nb-cart-item-name-m .nb-title  {
    font-size: var(--nb-product-name-font-size-m);
    height: calc(var(--nb-dt-rows) * var(--nb-product-name-line-height) * var(--nb-product-name-font-size-m));

}

.nb-cart-item-name.nb-cart-item-name-l,
.nb-cart-item-name.nb-cart-item-name-l .nb-title {
    font-size: var(--nb-product-name-font-size-l);
    height: calc(var(--nb-dt-rows) * var(--nb-product-name-line-height) * var(--nb-product-name-font-size-l));

}
/*
/* NB Fajl:'./components/complex/cart/cart-item-size/cart-item-size-1/cart-item-size-1.css.'
*/:root {
    --nb-cart-item-size-1-font-size: var(--nb-cart-item-size-1-font-size-m);
    --nb-cart-item-size-1-font-size-xs: var(--nb-paragraph-xs);
    --nb-cart-item-size-1-font-size-s: var(--nb-paragraph-s);
    --nb-cart-item-size-1-font-size-m: var(--nb-paragraph-m);
    --nb-cart-item-size-1-font-size-l: var(--nb-paragraph-l);

    --nb-cart-item-size-1-line-height: var(--nb-cart-item-size-1-line-height-m);
    --nb-cart-item-size-1-line-height-xs: 18px;
    --nb-cart-item-size-1-line-height-s: 20px;
    --nb-cart-item-size-1-line-height-m: 22px;
    --nb-cart-item-size-1-line-height-l: 24px;

    --nb-cart-item-size-1-font-weight: var(--nb-font-regular);
    --nb-cart-item-size-1-color: var(--nb-text-color-secondary);
}

.nb-cart-item-size {
    font-size: var(--nb-cart-item-size-1-font-size);
    font-weight: var(--nb-cart-item-size-1-font-weight);
    line-height: var(--nb-cart-item-size-1-line-height);
    color: var(--nb-cart-item-size-1-color);
}

.nb-cart-item-size.nb-cart-item-size-xs {
    font-size: var(--nb-cart-item-size-1-font-size-xs);
    line-height: var(--nb-cart-item-size-1-line-height-xs);
}

.nb-cart-item-size.nb-cart-item-size-s {
    font-size: var(--nb-cart-item-size-1-font-size-s);
    line-height: var(--nb-cart-item-size-1-line-height-s);
}

.nb-cart-item-size.nb-cart-item-size-m {
    font-size: var(--nb-cart-item-size-1-font-size-m);
    line-height: var(--nb-cart-item-size-1-line-height-m);
}

.nb-cart-item-size.nb-cart-item-size-l {
    font-size: var(--nb-cart-item-size-1-font-size-l);
    line-height: var(--nb-cart-item-size-1-line-height-l);
}
/*
/* NB Fajl:'./components/complex/cart/cart-price/cart-price-with-discount/cart-price-with-discount.css.'
*/:root {
    --nb-cart-price-with-discount-font-size: var(--nb-cart-price-with-discount-font-size-m);
    --nb-cart-price-with-discount-font-size-xs: var(--nb-paragraph-xs);
    --nb-cart-price-with-discount-font-size-s: var(--nb-paragraph-s);
    --nb-cart-price-with-discount-font-size-m: var(--nb-paragraph-m);
    --nb-cart-price-with-discount-font-size-l: var(--nb-paragraph-l);

    --nb-cart-price-with-discount-line-height: var(--nb-cart-price-with-discount-line-height-m);
    --nb-cart-price-with-discount-line-height-xs: 18px;
    --nb-cart-price-with-discount-line-height-s: 20px;
    --nb-cart-price-with-discount-line-height-m: 22px;
    --nb-cart-price-with-discount-line-height-l: 24px;

    --nb-cart-price-with-discount-font-weight: var(--nb-font-regular);
    --nb-cart-price-with-discount-color: var(--nb-text-color-primary);
}

.nb-cart-price-with-discount {
    font-size: var(--nb-cart-price-with-discount-font-size);
    font-weight: var(--nb-cart-price-with-discount-font-weight);
    line-height: var(--nb-cart-price-with-discount-line-height);
    color: var(--nb-cart-price-with-discount-color);
}

.nb-cart-price-with-discount.nb-cart-price-with-discount-xs {
    font-size: var(--nb-cart-price-with-discount-font-size-xs);
    line-height: var(--nb-cart-price-with-discount-line-height-xs);
}

.nb-cart-price-with-discount.nb-cart-price-with-discount-s {
    font-size: var(--nb-cart-price-with-discount-font-size-s);
    line-height: var(--nb-cart-price-with-discount-line-height-s);
}

.nb-cart-price-with-discount.nb-cart-price-with-discount-m {
    font-size: var(--nb-cart-price-with-discount-font-size-m);
    line-height: var(--nb-cart-price-with-discount-line-height-m);
}

.nb-cart-price-with-discount.nb-cart-price-with-discount-l {
    font-size: var(--nb-cart-price-with-discount-font-size-l);
    line-height: var(--nb-cart-price-with-discount-line-height-l);
}
/*
/* NB Fajl:'./components/complex/cart/cart-price/cart-price-regular/cart-price-regular.css.'
*/:root{
    --nb-cart-item-regular-price-color: var(--nb-product-regular-price-color);
    --nb-cart-item-regular-price-decoration: var(--nb-product-regular-price-decoration);

    --nb-cart-item-regular-price-active-color: var(--nb-product-regular-price-active-color);

    --nb-cart-item-regular-price-font-size-xs: var(--nb-product-regular-price-font-size-xs);
    --nb-cart-item-regular-price-line-height-xs: var(--nb-product-regular-price-line-height-xs);
    --nb-cart-item-regular-price-font-weight-xs: var(--nb-product-regular-price-font-weight-xs);

    --nb-cart-item-regular-price-font-size-s: var(--nb-product-regular-price-font-size-s);
    --nb-cart-item-regular-price-line-height-s: var(--nb-product-regular-price-line-height-s);
    --nb-cart-item-regular-price-font-weight-s: var(--nb-product-regular-price-font-weight-s);

    --nb-cart-item-regular-price-font-size-m: var(--nb-product-regular-price-font-size-m);
    --nb-cart-item-regular-price-line-height-m: var(--nb-product-regular-price-line-height-m);
    --nb-cart-item-regular-price-font-weight-m: var(--nb-product-regular-price-font-weight-m);

    --nb-cart-item-regular-price-font-size-l: var(--nb-product-regular-price-font-size-l);
    --nb-cart-item-regular-price-line-height-l: var(--nb-product-regular-price-line-height-l);
    --nb-cart-item-regular-price-font-weight-l: var(--nb-product-regular-price-font-weight-l);
}

.nb-price-regular {
    color: var(--nb-cart-item-regular-price-color);
    text-decoration: var(--nb-cart-item-regular-price-decoration);
}

.nb-price-regular.nb-price-active {
    --nb-cart-item-regular-price-decoration: none;
    color: var(--nb-cart-item-regular-price-active-color);
}

.nb-price-regular.nb-price-regular-xs {
    font-size: var(--nb-cart-item-regular-price-font-size-xs);
    line-height: var(--nb-cart-item-regular-price-line-height-xs);
    font-weight: var(--nb-cart-item-regular-price-font-weight-xs);
}

.nb-price-regular.nb-price-regular-s {
    font-size: var(--nb-cart-item-regular-price-font-size-s);
    line-height: var(--nb-cart-item-regular-price-line-height-s);
    font-weight: var(--nb-cart-item-regular-price-font-weight-s);
}

.nb-price-regular.nb-price-regular-m {
    font-size: var(--nb-cart-item-regular-price-font-size-m);
    line-height: var(--nb-cart-item-regular-price-line-height-m);
    font-weight: var(--nb-cart-item-regular-price-font-weight-m);
}

.nb-price-regular.nb-price-regular-l {
    font-size: var(--nb-cart-item-regular-price-font-size-l);
    line-height: var(--nb-cart-item-regular-price-line-height-l);
    font-weight: var(--nb-cart-item-regular-price-font-weight-l);
}
/*
/* NB Fajl:'./components/complex/cart/cart-price/cart-price-old/cart-price-old.css.'
*/:root{
    --nb-cart-item-old-price-color: var(--nb-product-old-price-color);
    --nb-cart-item-old-price-decoration: var(--nb-product-old-price-decoration);

    --nb-cart-item-old-price-font-size-xs: var(--nb-product-old-price-font-size-xs);
    --nb-cart-item-old-price-line-height-xs: var(--nb-product-old-price-line-height-xs);
    --nb-cart-item-old-price-font-weight-xs: var(--nb-product-old-price-font-weight-xs);

    --nb-cart-item-old-price-font-size-s: var(--nb-product-old-price-font-size-s);
    --nb-cart-item-old-price-line-height-s: var(--nb-product-old-price-line-height-s);
    --nb-cart-item-old-price-font-weight-s: var(--nb-product-old-price-font-weight-s);

    --nb-cart-item-old-price-font-size-m: var(--nb-product-old-price-font-size-m);
    --nb-cart-item-old-price-line-height-m: var(--nb-product-old-price-line-height-m);
    --nb-cart-item-old-price-font-weight-m: var(--nb-product-old-price-font-weight-m);

    --nb-cart-item-old-price-font-size-l: var(--nb-product-old-price-font-size-l);
    --nb-cart-item-old-price-line-height-l: var(--nb-product-old-price-line-height-l);
    --nb-cart-item-old-price-font-weight-l: var(--nb-product-old-price-font-weight-l);
}

.nb-price-old {
    color: var(--nb-cart-item-old-price-color);
    text-decoration: var(--nb-cart-item-old-price-decoration);
}

.nb-price-old.nb-price-old-xs {
    font-size: var(--nb-cart-item-old-price-font-size-xs);
    line-height: var(--nb-cart-item-old-price-line-height-xs);
    font-weight: var(--nb-cart-item-old-price-font-weight-xs);
}

.nb-price-old.nb-price-old-s {
    font-size: var(--nb-cart-item-old-price-font-size-s);
    line-height: var(--nb-cart-item-old-price-line-height-s);
    font-weight: var(--nb-cart-item-old-price-font-weight-s);
}

.nb-price-old.nb-price-old-m {
    font-size: var(--nb-cart-item-old-price-font-size-m);
    line-height: var(--nb-cart-item-old-price-line-height-m);
    font-weight: var(--nb-cart-item-old-price-font-weight-m);
}

.nb-price-old.nb-price-old-l {
    font-size: var(--nb-cart-item-old-price-font-size-l);
    line-height: var(--nb-cart-item-old-price-line-height-l);
    font-weight: var(--nb-cart-item-old-price-font-weight-l);
}
/*
/* NB Fajl:'./components/core/size/size-type-link-1/size-type-link-1.css.'
*/:root {
    --nb-size-type-link-1-font-size: var(--nb-paragraph-m);
    --nb-size-type-link-1-color: var(--nb-text-color-secondary);
    --nb-size-type-link-1-active-color: var(--nb-text-color-primary);
}

.nb-size-type-link-1 {
    font-size: var(--nb-size-type-link-1-font-size);
    color: var(--nb-size-type-link-1-color);
    cursor: pointer;
}

.nb-size-type-link-1.active {
    color: var(--nb-size-type-link-1-active-color);
    text-decoration: underline;
    text-underline-offset: 5px;
}
/*
/* NB Fajl:'./components/complex/product/product-size/product-size-info-1/product-size-info-1.css.'
*/.nb-product-size-info-1 {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nb-product-size-info-1 .nb-popover-size-value {
    font-weight: var(--nb-font-bold);
}
/*
/* NB Fajl:'./components/core/size/size-value-box-1/size-value-box-1.css.'
*/:root {
    --nb-size-box-1-font-size: var(--nb-paragraph-s);
    --nb-size-box-1-font-weight: var(--nb-body-font-weight);
    --nb-size-box-1-line-height: var(--nb-body-line-height);

    --nb-size-box-1-color: var(--nb-text-color-primary);
    --nb-size-box-1-bg-color: var(--nb-bg-primary);
    --nb-size-box-1-border-color: var(--nb-border-color);

    --nb-size-box-1-border-radius: var(--nb-border-radius-0);

    --nb-size-box-1-active-border-color: var(--nb-spec-color);
    --nb-size-box-1-active-color: var(--nb-text-color-primary);
    --nb-size-box-1-active-bg-color: var(--nb-bg-primary);

    --nb-size-box-1-disabled-border-color: var(--nb-border-color);
    --nb-size-box-1-disabled-color: var(--nb-text-color-primary);
    --nb-size-box-1-disabled-bg-color: var(--nb-bg-secondary);

    --nb-size-popover-max-width: 230px;

    --nb-size-box-1-availability-indicator-on-stock-color: var(--nb-color-success);
    --nb-size-box-1-availability-indicator-low-stock-color: var(--nb-color-warning);
    --nb-size-box-1-availability-indicator-very-low-stock-color: var(--nb-color-danger);
}

.nb-size-value-box-1{
    font-size: var(--nb-size-box-1-font-size);
    font-weight: var(--nb-size-box-1-font-weight);
    line-height: var(--nb-size-box-1-line-height);
    color: var(--nb-size-box-1-color);
    background-color: var(--nb-size-box-1-bg-color);
    border: 1px solid var(--nb-size-box-1-border-color);
    border-radius: var(--nb-size-box-1-border-radius);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 14px 2px;
    box-sizing: border-box;
    cursor: pointer;
    position: relative;
}

.nb-size-value-box-1.active,
.nb-size-value-box-1:focus,
.nb-size-value-box-1:hover {
    border-color: var(--nb-size-box-1-active-border-color);
    color: var(--nb-size-box-1-active-color);
    background-color: var(--nb-size-box-1-active-bg-color);
}

.nb-size-value-box-1.disabled,
.nb-size-value-box-1.disabled:focus,
.nb-size-value-box-1.disabled:hover {
    cursor: not-allowed;
    border-color: var(--nb-size-box-1-disabled-border-color);
    color: var(--nb-size-box-1-disabled-color);
    background-color: var(--nb-size-box-1-disabled-bg-color);
}

.nb-size-with-indicator{
    padding-bottom: 2px;
    border-radius: var(--nb-size-box-1-border-radius);
    border: var(--nb-border-width) var(--nb-border-style) var(--nb-size-box-1-border-color);
}
.nb-size-with-indicator:hover,
.nb-size-with-indicator.active,
.nb-size-with-indicator:has(.active),
.nb-size-with-indicator:focus {
    border-color: var(--nb-size-box-1-active-border-color);
}
.nb-size-with-indicator.on-stock{
    background-color: var(--nb-color-success);
}
.nb-size-with-indicator.low-stock{
    background-color: var(--nb-color-warning);
}
.nb-size-with-indicator.very-low-stock{
    background-color: var(--nb-color-danger);
}

.nb-size-popover {
    max-width: var(--nb-size-popover-max-width);
}

/* New style */
.on-stock{
    background-color: var(--nb-size-box-1-availability-indicator-on-stock-color);
}
.low-stock{
    background-color: var(--nb-size-box-1-availability-indicator-low-stock-color);
}
.very-low-stock{
    background-color: var(--nb-size-box-1-availability-indicator-very-low-stock-color);
}
.nb-stock-indicator{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
}
.nb-stock-indicator-inner{
    width: 100%;
    height: 100%;
}
/* Progress */
.nb-stock-indicator.nb-progress-indicator{
    position: absolute;
    bottom: 2px;
    left: 5px;
    right: 5px;
    width: unset;
    background: var(--nb-color-gray-300);
}
.nb-stock-indicator.nb-progress-indicator .on-stock{
    width: 100%;
}
.nb-stock-indicator.nb-progress-indicator .low-stock{
    width: 66.66%;
}
.nb-stock-indicator.nb-progress-indicator .very-low-stock{
    width: 33.33%;
}

@media screen and (max-width: 991px) {
    .nb-size-value-box-1 {
        padding: 14px 9px
    }
}
/*
/* NB Fajl:'./components/complex/cart/cart-item-size-list/cart-item-size-list-1/cart-item-size-list-1.css.'
*/:root {
    --nb-cart-item-size-list-1-border-width: var(--nb-border-width);
    --nb-cart-item-size-list-1-border-color: var(--nb-border-color);
    --nb-cart-item-size-list-1-border-active-color: var(--nb-spec-color);
}

.nb-cart-item-size-list-1 {
    display: flex;
    flex-wrap: wrap;
    border-left: var(--nb-cart-item-size-list-1-border-width) var(--nb-border-style) var(--nb-cart-item-size-list-1-border-color);
}

.nb-cart-item-size-list-1 .nb-size-value-box-1 {
    flex: 0 0 16.666666%;
    border: var(--nb-cart-item-size-list-1-border-width) var(--nb-border-style) var(--nb-cart-item-size-list-1-border-color);
    border-left: var(--nb-cart-item-size-list-1-border-width) var(--nb-border-style) transparent;
}

.nb-cart-item-size-list-1 .nb-size-value-box-1:not(:nth-of-type(-n+6)) {
    border-top-color: transparent;
}

.nb-cart-item-size-list-1 .nb-size-value-box-1.active:nth-of-type(-n+6),
.nb-cart-item-size-list-1 .nb-size-value-box-1:hover:nth-of-type(-n+6),
.nb-cart-item-size-list-1 .nb-size-value-box-1:focus:nth-of-type(-n+6){
    margin-top: 0;
}

.nb-cart-item-size-list-1 .nb-size-value-box-1.active,
.nb-cart-item-size-list-1 .nb-size-value-box-1:hover,
.nb-cart-item-size-list-1 .nb-size-value-box-1:focus {
    border: var(--nb-cart-item-size-list-1-border-width) var(--nb-border-style) var(--nb-size-box-1-active-border-color);
    margin-top: -1px;
    border-color: var(--nb-cart-item-size-list-1-border-active-color);
}

.nb-cart-item-size-list-1 .nb-size-value-box-1.disabled:not(:nth-of-type(-n+7)) {
    border-top: 0;
    margin-top: 1px;
}

.nb-cart-item-size-list-1 .nb-size-value-box-1.disabled,
.nb-cart-item-size-list-1 .nb-size-value-box-1.disabled:hover,
.nb-cart-item-size-list-1 .nb-size-value-box-1.disabled:focus {
    color: var(--nb-size-box-1-disabled-color);
    background-color: var(--nb-size-box-1-disabled-bg-color);
    border-color: var(--nb-size-box-1-disabled-border-color);
    cursor: not-allowed;
    opacity: 0.6;
    border-left: var(--nb-cart-item-size-list-1-border-width) var(--nb-border-style) transparent;
}

@media screen and (max-width: 1024px) {
    .nb-cart-item-size-list-1 .nb-size-value-box-1 {
        flex: 0 0 25%;
    }
    .nb-cart-item-size-list-1 .nb-size-value-box-1:not(:nth-of-type(-n+4)) {
        border-top-color: transparent;
    }
    .nb-cart-item-size-list-1 .nb-size-value-box-1.active:nth-of-type(-n+4),
    .nb-cart-item-size-list-1 .nb-size-value-box-1:hover:nth-of-type(-n+4),
    .nb-cart-item-size-list-1 .nb-size-value-box-1:focus:nth-of-type(-n+4){
        margin-top: 0;
    }
}
/*
/* NB Fajl:'./components/complex/cart/cart-item-change-size/cart-item-change-size-picker-1/cart-item-change-size-picker-1.css.'
*/:root {
    --nb-cart-item-change-size-picker-1-bg: var(--nb-color-white);
    --nb-cart-item-change-size-picker-1-border-width: var(--nb-border-width);
    --nb-cart-item-change-size-picker-1-border-color: transparent;
    --nb-cart-item-change-size-picker-1-border-radius: var(--nb-border-radius-xs);
}

.nb-cart-item-change-size-picker-1 {
    background-color: var(--nb-cart-item-change-size-picker-1-bg);
    padding: 12px;
    border: var(--nb-cart-item-change-size-picker-1-border-width) var(--nb-border-style) var(--nb-cart-item-change-size-picker-1-border-color);
    border-radius: var(--nb-cart-item-change-size-picker-1-border-radius);
}

.nb-cart-item-change-size-picker-1 > * + * {
    margin-top: 10px;
}

.nb-cart-item-change-size-picker-1 .nb-size-type-wrapper {
    display: flex;
    gap: 40px;
}


/*
/* NB Fajl:'./components/complex/cart/cart-item-change-size/cart-item-change-size-2/cart-item-change-size-2.css.'
*/.nb-cart-item-change-size-2:has(.nb-icon) {
    display: flex;
    gap: 5px;
    align-items: center;
}
/*
/* NB Fajl:'./components/complex/cart/cart-item-delete/cart-item-delete-1/cart-item-delete-1.css.'
*/:root {
    --nb-cart-item-delete-1-icon-color: var(--nb-color-black);
    --nb-cart-item-delete-1-label-font-size: var(--nb-font-size-13);
    --nb-cart-item-delete-1-label-font-weight: var(--nb-btn-font-weight);
    --nb-cart-item-delete-1-label-color: var(--nb-text-color-primary);
    --nb-cart-item-delete-1-bg: var(--nb-color-gray);
    --nb-cart-item-delete-1-border-width: var(--nb-border-width);
    --nb-cart-item-delete-1-border-color: var(--nb-border-color);
}

.nb-cart-item-delete-1 {
    padding: 5px;
    cursor: pointer;
    color: var(--nb-cart-item-delete-1-icon-color);
}

.nb-cart-item-delete-1 .nb-cart-item-delete-1-label {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--nb-cart-item-delete-1-label-font-size);
    font-weight: var(--nb-cart-item-delete-1-label-font-weight);
    color: var(--nb-cart-item-delete-1-label-color);
    background-color: var(--nb-cart-item-delete-1-bg);
    border: var(--nb-cart-item-delete-1-border-width) var(--nb-border-style) var(--nb-cart-item-delete-1-border-color);
    padding: 6px 20px;
}


/*
/* NB Fajl:'./components/complex/cart/cart-product-item/cart-product-item-9/cart-product-item-9.css.'
*/.nb-cart-product-item-9 {
    padding: 10px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;

    .nb-cart-product-image-info-wrapper{
        position: relative;
        .quantity{
            font-size: 12px;
            width: 20px;
            height: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            color: var(--nb-color-white);
            background-color: var(--nb-color-black);
            position: absolute;
            right: -10px;
            top: -10px;
        }
    }

    .nb-right-wrapper{
        display: flex;
        flex-shrink: 1;
        justify-content: space-between;
        gap: 10px;
    }

    .nb-prices-wrapper{
        text-align: right;
        .nb-cart-price-with-discount-label{
            display: none;
        }

        .nb-price, .nb-cart-price-with-discount{
            font-size: 14px;
            font-weight: var(--nb-font-bold);
            color: var(--nb-text-color-primary);
            white-space: nowrap;
        }

        .nb-price-prev{
            font-size: 12px;
            font-weight: 400;
            color: var(--nb-color-gray-400);
        }
    }

    .nb-cart-item-change-size-2,
    .nb-cart-item-size{
        font-size: 12px;
        color: var(--nb-text-color-primary);
        margin-top: 5px;
    }
    .nb-cart-item-delete-1-label{
        display: none;
    }
}

.nb-cart-product-item-9 .nb-cart-item-name .nb-title {
    font-size: var(--nb-font-size-16);
    font-weight: var(--nb-font-regular);
}

.nb-cart-product-item-9 .nb-cart-product-image-info-wrapper > .nb-img-wrapper {
    max-width: 60px;

    .nb-img{
        aspect-ratio: 1;
        object-fit: cover;
    }
}


/*
/* NB Fajl:'./components/complex/cart/cart-click-and-reserve-promo-code/cart-click-and-reserve-promo-code.css.'
*/:root {
    --nb-cart-click-and-reserve-promo-code-font-size: var(--nb-paragraph-xs);
    --nb-cart-click-and-reserve-promo-code-font-weight: var(--nb-font-regular);
    --nb-cart-click-and-reserve-promo-code-color: var(--nb-text-color-primary);
}

.nb-cart-click-and-reserve-promo-code {
    font-size: var(--nb-cart-click-and-reserve-promo-code-font-size);
    color: var(--nb-cart-click-and-reserve-promo-code-color);
    font-weight: var(--nb-cart-click-and-reserve-promo-code-font-weight);
}
/*
/* NB Fajl:'./components/complex/cart/cart-benefits/cart-benefits-info-box-2/cart-benefits-info-box-2.css.'
*/.nb-cart-benefits-info-box-2 {
    display: flex;
    align-items: flex-start;
    padding: 10px 20px;
    gap: 10px;
    background-color: var(--nb-color-red-100);
}

.nb-cart-benefits-info-box-2 .nb-cart-click-and-reserve-promo-code {
    font-size: var(--nb-font-size-13);
}

.nb-cart-benefits-info-box-2 .nb-cart-click-and-reserve-promo-code-value {
    font-weight: var(--nb-font-bold);
}

@media screen and (max-width: 768px) {
    .nb-cart-benefits-info-box-2 {
        padding: 10px 15px;
    }
}
/*
/* NB Fajl:'./components/complex/cart/cart-item-code/cart-item-code/cart-item-code.css.'
*/:root {
    --nb-cart-item-code-1-font-size: var(--nb-cart-item-code-1-font-size-m);
    --nb-cart-item-code-1-font-size-xs: var(--nb-paragraph-xs);
    --nb-cart-item-code-1-font-size-s: var(--nb-paragraph-s);
    --nb-cart-item-code-1-font-size-m: var(--nb-paragraph-m);
    --nb-cart-item-code-1-font-size-l: var(--nb-paragraph-l);

    --nb-cart-item-code-1-line-height: var(--nb-cart-item-code-1-line-height-m);
    --nb-cart-item-code-1-line-height-xs: 18px;
    --nb-cart-item-code-1-line-height-s: 20px;
    --nb-cart-item-code-1-line-height-m: 22px;
    --nb-cart-item-code-1-line-height-l: 24px;

    --nb-cart-item-code-1-font-weight: var(--nb-font-regular);
    --nb-cart-item-code-1-color: var(--nb-text-color-primary);
}

.nb-cart-item-code {
    font-size: var(--nb-cart-item-code-1-font-size);
    font-weight: var(--nb-cart-item-code-1-font-weight);
    line-height: var(--nb-cart-item-code-1-line-height);
    color: var(--nb-cart-item-code-1-color);
}

.nb-cart-item-code.nb-cart-item-code-xs {
    font-size: var(--nb-cart-item-code-1-font-size-xs);
    line-height: var(--nb-cart-item-code-1-line-height-xs);
}

.nb-cart-item-code.nb-cart-item-code-s {
    font-size: var(--nb-cart-item-code-1-font-size-s);
    line-height: var(--nb-cart-item-code-1-line-height-s);
}

.nb-cart-item-code.nb-cart-item-code-m {
    font-size: var(--nb-cart-item-code-1-font-size-m);
    line-height: var(--nb-cart-item-code-1-line-height-m);
}

.nb-cart-item-code.nb-cart-item-code-l {
    font-size: var(--nb-cart-item-code-1-font-size-l);
    line-height: var(--nb-cart-item-code-1-line-height-l);
}
/*
/* NB Fajl:'./components/complex/cart/cart-item-quantity/cart-item-quantity-4/cart-item-quantity-4.css.'
*/:root {
    --nb-quantity-cart-4-border-width: var(--nb-border-width);
    --nb-quantity-cart-4-border-color: var(--nb-border-color);
    --nb-quantity-cart-4-border-radius: var(--nb-border-radius-4);

    --nb-quantity-cart-4-arrows-bg: var(--nb-color-gray-100);

    --nb-quantity-cart-4-input-font-size: var(--nb-font-size-12);
    --nb-quantity-cart-4-input-font-weight: var(--nb-font-regular);
    --nb-quantity-cart-4-input-color: var(--nb-text-color-primary);

    --nb-quantity-cart-4-width: 34px;
    --nb-quantity-cart-4-height: 28px;

}

.nb-quantity-cart-4 {
    display: flex;
    align-items: center;
}

.nb-quantity-cart-4 .nb-quantity-wrapper {
    display: inline-flex;
    vertical-align: middle;
    border: var(--nb-quantity-cart-4-border-width) var(--nb-border-style) var(--nb-quantity-cart-4-border-color);
    border-radius: var(--nb-quantity-cart-4-border-radius);
}

.nb-quantity-cart-4 .nb-quantity-arrows {
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--nb-quantity-cart-4-width);
    height: var(--nb-quantity-cart-4-height);
    background-color: var(--nb-quantity-cart-4-arrows-bg);
    cursor: pointer;
}

.nb-quantity-cart-4 .nb-quantity-arrows.nb-minus {
    border-top-left-radius: var(--nb-quantity-cart-4-border-radius);
    border-bottom-left-radius: var(--nb-quantity-cart-4-border-radius);
}

.nb-quantity-cart-4 .nb-quantity-arrows.nb-plus {
    border-top-right-radius: var(--nb-quantity-cart-4-border-radius);
    border-bottom-right-radius: var(--nb-quantity-cart-4-border-radius);
}

.nb-quantity-cart-4 .nb-quantity-input .nb-input {
    text-align: center;
    width: var(--nb-quantity-cart-4-width);
    height: var(--nb-quantity-cart-4-height);
    font-size: var(--nb-quantity-cart-4-input-font-size);
    font-weight: var(--nb-quantity-cart-4-input-font-weight);
    color: var(--nb-quantity-cart-4-input-color);
    border: unset;
    padding: 0;
}

.nb-quantity-cart-4.nb-quantity-cart-4-label-above {
    flex-direction: column;
    align-items: flex-start;
}

.nb-quantity-cart-4.nb-quantity-cart-4-label-above .nb-quantity-label {
    margin-right: 0;
    margin-bottom: 10px;
}
/*
/* NB Fajl:'./components/complex/cart/cart-price/cart-item-price-saving/cart-item-price-saving.css.'
*/:root{
    --nb-cart-item-saving-price-color: var(--nb-product-saving-price-color);

    --nb-cart-item-saving-price-font-size-xs: var(--nb-product-saving-price-font-size-xs);
    --nb-cart-item-saving-price-line-height-xs: var(--nb-product-saving-price-line-height-xs);
    --nb-cart-item-saving-price-font-weight-xs: var(--nb-product-saving-price-font-weight-xs);

    --nb-cart-item-saving-price-font-size-s: var(--nb-product-saving-price-font-size-s);
    --nb-cart-item-saving-price-line-height-s: var(--nb-product-saving-price-line-height-s);
    --nb-cart-item-saving-price-font-weight-s: var(--nb-product-saving-price-font-weight-s);

    --nb-cart-item-saving-price-font-size-m: var(--nb-product-saving-price-font-size-m);
    --nb-cart-item-saving-price-line-height-m: var(--nb-product-saving-price-line-height-m);
    --nb-cart-item-saving-price-font-weight-m: var(--nb-product-saving-price-font-weight-m);

    --nb-cart-item-saving-price-font-size-l: var(--nb-product-saving-price-font-size-l);
    --nb-cart-item-saving-price-line-height-l: var(--nb-product-saving-price-line-height-l);
    --nb-cart-item-saving-price-font-weight-l: var(--nb-product-saving-price-font-weight-l);
}

.nb-price-saving {
    color: var(--nb-cart-item-saving-price-color);
}

.nb-price-saving.nb-price-saving-xs {
    font-size: var(--nb-cart-item-saving-price-font-size-xs);
    line-height: var(--nb-cart-item-saving-price-line-height-xs);
    font-weight: var(--nb-cart-item-saving-price-font-weight-xs);
}

.nb-price-saving.nb-price-saving-s {
    font-size: var(--nb-cart-item-saving-price-font-size-s);
    line-height: var(--nb-cart-item-saving-price-line-height-s);
    font-weight: var(--nb-cart-item-saving-price-font-weight-s);
}

.nb-price-saving.nb-price-saving-m {
    font-size: var(--nb-cart-item-saving-price-font-size-m);
    line-height: var(--nb-cart-item-saving-price-line-height-m);
    font-weight: var(--nb-cart-item-saving-price-font-weight-m);
}

.nb-price-saving.nb-price-saving-l {
    font-size: var(--nb-cart-item-saving-price-font-size-l);
    line-height: var(--nb-cart-item-saving-price-line-height-l);
    font-weight: var(--nb-cart-item-saving-price-font-weight-l);
}

/*
/* NB Fajl:'./components/complex/cart/cart-product-item/cart-gift-product-item-1/cart-gift-product-item-1.css.'
*/:root {
    --nb-cart-gift-product-item-1-bg: var(--nb-color-white);
    --nb-cart-gift-product-item-1-unvailable-message-bg: var(--nb-bg-primary);
    --nb-cart-gift-product-item-1-border-width: var(--nb-border-width);
    --nb-cart-gift-product-item-1-border-color: var(--nb-border-color-light);

    --nb-cart-gift-product-item-1-prev-price-font-size: var(--nb-font-size-14);
    --nb-cart-gift-product-item-1-prev-price-font-weight: var(--nb-font-regular);
    --nb-cart-gift-product-item-1-prev-price-color: var(--nb-price-prev-color);

    --nb-cart-gift-product-item-1-active-price-font-size: var(--nb-font-size-18);
    --nb-cart-gift-product-item-1-active-price-font-weight: var(--nb-font-bold);
    --nb-cart-gift-product-item-1-active-price-color: var(--nb-cart-price-with-discount-color);

    --nb-cart-gift-product-item-1-product-name-font-size: var(--nb-font-size-18);
    --nb-cart-gift-product-item-1-product-name-font-weight: var(--nb-font-semibold);
    --nb-cart-gift-product-item-1-product-name-color: var(--nb-text-color-primary);

}

.nb-cart-gift-product-item-1 {
    display: flex;
    align-items: center;
    padding: 20px;
    flex-wrap: wrap;
    background-color: var(--nb-cart-gift-product-item-1-bg);
}

.nb-cart-gift-product-item-1 .nb-product-image-info-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-grow: 1;
    position: relative;
}

.nb-cart-gift-product-item-1 .nb-product-info-price-wrapper > * {
    flex: 1 1;
}

.nb-cart-gift-product-item-1 .nb-product-info-price-wrapper {
    display: flex;
    align-items: center;
    flex-grow: 1;
}

.nb-cart-gift-product-item-1 .nb-price-quantity-wrapper > *:not(:last-child) {
    padding-bottom: 10px;
}

.nb-cart-gift-product-item-1 .nb-price-quantity-wrapper,
.nb-cart-gift-product-item-1 .nb-product-image-info-wrapper .nb-product-info-wrapper {
    padding-right: 10px;
}

.nb-cart-gift-product-item-1 .nb-delete-product-wrapper .nb-icon {
    font-size: 17px;
    cursor: pointer;
}

.nb-cart-gift-product-item-1 .nb-img-wrapper {
    max-width: 115px;
    flex-shrink: 0;
}

.nb-cart-gift-product-item-1 .nb-product-info-wrapper > *:not(:last-child) {
    margin-bottom: 5px;
}

.nb-cart-gift-product-item-1 .nb-price-wrapper > *:not(:last-child) {
    margin-bottom: 5px;
}

.nb-cart-gift-product-item-1 .nb-info-wrapper {
    flex: 0 0 100%;
    border-top: var(--nb-border-width) var(--nb-border-dashed) var(--nb-border-color-light);
    margin-top: 10px;
    color: var(--nb-color-danger);
    padding: 10px 20px 0;
}

.nb-cart-gift-product-item-1 .nb-btn-and-price-wrapper {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.nb-cart-gift-product-item-1 .nb-delete-product-wrapper .nb-cart-gift-product-delete {
    position: absolute;
    top: 0;
    right: 0;
}

.nb-cart-gift-product-item-1  .nb-cart-item-name .nb-title,
.nb-cart-gift-product-item-1  .nb-cart-item-name {
    font-size: var(--nb-cart-gift-product-item-1-product-name-font-size);
    line-height: var(--nb-body-line-height);
    font-weight: var(--nb-cart-gift-product-item-1-product-name-font-weight);
    color: var(--nb-cart-gift-product-item-1-product-name-color);
}

.nb-cart-gift-product-item-1 .nb-price-wrapper .nb-price-prev {
    font-size: var(--nb-cart-gift-product-item-1-prev-price-font-size);
    font-weight: var(--nb-cart-gift-product-item-1-prev-price-font-weight);
    color: var(--nb-cart-gift-product-item-1-prev-price-color);
    text-decoration: line-through;
}

.nb-cart-gift-product-item-1  .nb-cart-item-size,
.nb-cart-gift-product-item-1  .nb-cart-item-code {
    font-size: var(--nb-font-size-14);
    line-height: var(--nb-body-line-height);
    color: var(--nb-text-color-primary);
}

.nb-cart-gift-product-item-1  .nb-cart-item-size .nb-cart-item-size-value,
.nb-cart-gift-product-item-1  .nb-cart-item-code .nb-cart-item-code-value{
    font-weight: var(--nb-font-semibold);
}

.nb-cart-gift-product-item-1 .nb-price-wrapper .nb-cart-price-with-discount {
    font-size: var(--nb-cart-gift-product-item-1-active-price-font-size);
    line-height: var(--nb-body-line-height);
    font-weight: var(--nb-cart-gift-product-item-1-active-price-font-weight);
    color: var(--nb-cart-gift-product-item-1-active-price-color);
}

.nb-cart-gift-product-item-1 .nb-cart-price-with-discount-label {
    display: none;
}

.nb-cart-gift-product-item-1 .nb-quantity-cart-4 .nb-quantity-arrows {
    cursor: unset;
    pointer-events: none;
}

.nb-cart-gift-product-item-1 .nb-quantity-cart-4 .nb-quantity-arrows .nb-icon {
    display: none;
    pointer-events: none;
}

.nb-cart-gift-product-item-1 .nb-quantity-cart-4 .nb-quantity-input .nb-input {
    pointer-events: none;
}

@media screen and (max-width: 768px) {
    :root {
        --nb-cart-gift-product-item-1-active-price-font-size: var(--nb-font-size-14);
        --nb-cart-gift-product-item-1-prev-price-font-size: var(--nb-font-size-12);
        --nb-cart-gift-product-item-1-product-name-font-size: var(--nb-font-size-14);
    }

    .nb-cart-gift-product-item-1 {
        padding: 10px;
    }

    .nb-cart-gift-product-item-1 .nb-cart-item-name,
    .nb-cart-gift-product-item-1 .nb-cart-item-name .nb-title {
        --nb-dt-rows: auto;
    }

    .nb-cart-gift-product-item-1 .nb-product-info-price-wrapper {
        flex-wrap: wrap;
        flex-direction: column;
        align-items: start;
    }

    .nb-cart-gift-product-item-1 .nb-product-image-info-wrapper {
        gap: 10px;
        align-items: start;
    }

    .nb-cart-gift-product-item-1 .nb-img-wrapper {
        max-width: 100px;
    }

    .nb-cart-gift-product-item-1  .nb-quantity-wrapper {
        position: absolute;
        left: 0;
        bottom: 0;
    }

    .nb-cart-gift-product-item-1 .nb-product-image-info-wrapper > .nb-img-wrapper {
        padding-bottom: 40px;
    }

    .nb-product-image-info-wrapper .nb-product-info-wrapper {
        margin-bottom: 10px;
    }

    .nb-cart-gift-product-item-1  .nb-cart-item-size,
    .nb-cart-gift-product-item-1  .nb-cart-item-code {
        font-size: var(--nb-font-size-12);
    }

    .nb-cart-gift-product-item-1 .nb-quantity-cart-2 .nb-quantity-input .nb-input,
    .nb-cart-gift-product-item-1 .nb-quantity-cart-2 .nb-quantity-arrows {
        width: 33px;
        height: 26px;
    }
}

/*
/* NB Fajl:'./components/core/tabs/tabs-2/tabs-2.css.'
*/:root {
    --nb-tab2-padding-x:             20px;
    --nb-tab2-padding-y:             12px;
    --nb-tab2-font-size:             var(--nb-tab-font-size);
    --nb-tab2-line-height:           24px;
    --nb-tab2-font-weight:           var(--nb-tab-font-weight);
    --nb-tab2-color:                 var(--nb-tab-color);
    --nb-tab2-bg:                    var(--nb-tab-bg);
    --nb-tab2-border-radius:         var(--nb-tab-border-radius);
    --nb-tab2-active-color:          var(--nb-color-black);
    --nb-tab2-active-bg:             var(--nb-bg-secondary);
    --nb-tab2-content-padding-x:     0;
    --nb-tab2-content-padding-y:     var(--nb-tab-content-padding-y);
    --nb-tab2-border-bottom-color:   var(--nb-border-color);
    --nb-tab2-border-bottom-active-color: var(--nb-tab-active-color);

}
.nb-tabs.nb-tabs-2 .nb-nav-tabs {
    border-bottom-width: 0;
}

.nb-tabs.nb-tabs-2 .nb-tab-content{
    padding: var(--nb-tab2-content-padding-y) var(--nb-tab2-content-padding-x);
}

.nb-tabs.nb-tabs-2 .nb-nav-link {
    padding: var(--nb-tab2-padding-y) var(--nb-tab2-padding-x);
    font-size: var(--nb-tab2-font-size);
    line-height: var(--nb-tab2-line-height);
    font-weight: var(--nb-tab2-font-weight);
    color: var(--nb-tab2-color);
    background-color: var(--nb-tab2-bg);
    border-radius: 0;
    border: unset;
    border-bottom: var(--nb-border-1) solid transparent;
    margin-bottom: 0;
    cursor: pointer;
    text-align: center;
}

.nb-tabs.nb-tabs-2 .nb-nav-item .nb-nav-link {
    border-bottom-color: var(--nb-tab2-border-bottom-color);
}

.nb-tabs.nb-tabs-2 .nb-nav-item .nb-nav-link.active {
    color: var(--nb-tab2-active-color);
    background-color: var(--nb-tab2-active-bg);
    border-bottom-color: var(--nb-tab2-border-bottom-active-color);
}
/*
/* NB Fajl:'./components/core/box/box-26/box-26.css.'
*/:root {
    --nb-box-26-border-width: var(--nb-border-width);
    --nb-box-26-border-color: var(--nb-border-color);
}

.nb-box-26 {
    border: var(--nb-box-26-border-width) var(--nb-border-style) var(--nb-box-26-border-color);
}

.nb-box-26 .nb-main-wrapper {
    display: flex;
    justify-content: space-between;
    padding: 15px;
}

.nb-box-26 .nb-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
/*
/* NB Fajl:'./components/complex/cart/cart-code-selection/action-loyalty-box-1/action-loyalty-box-1.css.'
*/:root {
    --nb-action-loyalty-box-1-loyalty-name-font-size: var(--nb-font-size-15);
    --nb-action-loyalty-box-1-loyalty-name-font-weight: var(--nb-body-font-weight);
    --nb-action-loyalty-box-1-loyalty-name-color: var(--nb-text-color-primary);

    --nb-action-loyalty-box-1-loyalty-code-font-size: var(--nb-font-size-12);
    --nb-action-loyalty-box-1-loyalty-code-font-weight: var(--nb-body-font-weight);
    --nb-action-loyalty-box-1-loyalty-code-color: var(--nb-text-color-primary);

    --nb-action-loyalty-box-1-checked-border-color: var(--nb-color-green);
}

.nb-action-loyalty-box-1 {
    cursor: pointer;
}

.nb-action-loyalty-box-1.checked {
    border-color: var(--nb-action-loyalty-box-1-checked-border-color);
}

.nb-action-loyalty-box-1 .nb-first-text {
    font-size: var(--nb-action-loyalty-box-1-loyalty-name-font-size);
    font-weight: var(--nb-action-loyalty-box-1-loyalty-name-font-weight);
    color: var(--nb-action-loyalty-box-1-loyalty-name-color);
}

.nb-action-loyalty-box-1 .nb-second-text {
    font-size: var(--nb-action-loyalty-box-1-loyalty-code-font-size);
    font-weight: var(--nb-action-loyalty-box-1-loyalty-code-font-weight);
    color: var(--nb-action-loyalty-box-1-loyalty-code-color);
}

.nb-action-loyalty-box-1 .nb-icon {
    width: 16px;
    height: 16px;
    border: var(--nb-border-width) var(--nb-border-style) var(--nb-border-color);
    position: relative;
}

.nb-action-loyalty-box-1 .nb-icon:before {
    content: '';
    height: 13px;
    width: 13px;
    position: absolute;
    top: -1px;
}

.nb-action-loyalty-box-1.checked .nb-icon:before {
    content: '\F26E';
}
/*
/* NB Fajl:'./components/complex/cart/cart-code-selection/action-loyalty-list-1/action-loyalty-list-1.css.'
*/:root {
    --nb-action-loyalty-list-1-border-width: var(--nb-border-width);
    --nb-action-loyalty-list-1-border-color: var(--nb-border-color);
}

.nb-action-loyalty-list-1 {
    display: flex;
    gap: 20px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: var(--nb-action-loyalty-list-1-border-width) var(--nb-border-style) var(--nb-action-loyalty-list-1-border-color);
    flex-wrap: wrap;
}

.nb-action-loyalty-list-1 .nb-action-loyalty-box-1 {
    width: 246px;
}
/*
/* NB Fajl:'./components/complex/cart/cart-code-selection/action-loyalty-3/action-loyalty-3.css.'
*/.nb-action-loyalty-3{
    .nb-login-info {
        margin-bottom: 10px;
    }

    > .nb-paragraph{
        font-size: 14px;
        font-weight: var(--nb-font-semibold);
        margin-bottom: 5px;
    }

    .input-btn-wrapper{
        display: flex;

        .nb-form-group{
            flex-grow: 1;
            max-width: 100%;
            margin-bottom: 0;

            .nb-input{
                height: 40px;
                border-top-right-radius: 0;
                border-bottom-right-radius: 0;
            }
            .nb-label{
                line-height: 40px;
            }
        }
        .nb-btn{
            padding-block: 2px;
            height: 40px;
            border-radius: 0;
        }
    }
}

.nb-action-loyalty-3 .nb-btn-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.nb-action-loyalty-3 .nb-btn{
    --nb-dt-rows: 2;
    max-width: 240px;
    height: calc(var(--nb-dt-rows) * (var(--nb-btn-line-height) + var(--nb-btn-font-size)));
}
.nb-action-loyalty-3 .nb-btn .btn-text{
    overflow: hidden;
    max-height: calc(var(--nb-dt-rows) * var(--nb-btn-line-height));
    text-overflow: ellipsis;
    white-space: normal;
    display: -webkit-box;
    width: fit-content;
    margin: auto;
}

.nb-action-loyalty-3 .nb-form-group{
    max-width: 425px;
}
.nb-action-loyalty-3 :first-child{
    align-items: center;
}
.nb-action-loyalty-3 .nb-action-loyalty-3-box-1 .nb-info-wrapper{
    align-items: start;
}
.nb-action-loyalty-3 .row .nb-paragraph.title{
    margin-bottom: 40px;
}

@media screen and (max-width: 576px) {
    .nb-action-loyalty-3 .nb-btn {
        max-width: 100%;
        width: 100%;
    }
}
/*
/* NB Fajl:'./components/complex/cart/cart-code-selection/checkout-code-selection-tab-list-2/checkout-code-selection-tab-list-2.css.'
*/
.nb-checkout-code-selection-tab-list-2{
    .nb-tabs.nb-tabs-2{
        .nb-nav-tabs{
            gap: 5px 20px;
        }
        .nb-nav-item .nb-nav-link{
            padding: 0;
            background: transparent;
            font-size: 14px;
            text-decoration: underline;
            text-underline-offset: 5px;
            color: var(--nb-text-color-secondary);
            border-bottom: none;
            font-weight: var(--nb-font-semibold);

            &.active{
                color: var(--nb-text-color-primary);
            }
        }
        .nb-tab-content{
            padding-bottom: 0;
        }
    }
}

/*
/* NB Fajl:'./components/complex/cart/cart-summary/cart-summary-6/cart-summary-6.css.'
*/.nb-cart-summary-6 {
    .nb-text-wrapper{
        display: flex;
        align-items: center;
        justify-content: space-between;

        .nb-paragraph,.nb-price{
            font-size: 16px;
            line-height: 20px;
        }

        &+.nb-text-wrapper{
            margin-top: 6px;
        }
    }

    .nb-text-wrapper:has(.nb-total-label){
        margin-top: 10px;

        .nb-paragraph,.nb-price{
            font-size: 22px;
            line-height: 26px;
            font-weight: var(--nb-font-bold);
        }
    }

    .nb-taxes-label{
        font-size: 16px;
        line-height: 20px;
        margin-top: 10px;
    }
}
/*
/* NB Fajl:'./_blocks/checkout/cart-summary/cart-total/cart-total-4/cart-total-4.css.'
*/.nb-cart-total-4 > .heading-wrapper{
    display: none;
}

@media screen and (max-width: 992px) {
    .nb-cart-total-4 > .heading-wrapper{
        display: flex;
        justify-content: space-between;
        align-items: center;

        .title:after{
            font-family: nbi-font;
            content: "\e9ea";
            margin-left: 10px;
        }
        .title{
           font-size: 16px;
        }

        .nb-total-price{
            font-size: 22px;
            font-weight: var(--nb-font-bold);
        }
    }

    .nb-cart-total-4{
        padding: 15px 10px;
        left: -10px;
        width: calc(100% + 20px);
        background: var(--nb-color-gray-100);
        .nb-cart-summary-6{
            display: none;
        }

        &:has(>.heading-wrapper.active){
            .nb-cart-summary-6{
                display: block;
                margin-top: 20px;
            }
        }

        >.heading-wrapper.active{
            .title{
                width: 100%;

                &:after{
                    float: right;
                    transform: rotateZ(180deg);
                }
            }
            .nb-total-price{
                display: none;
            }
        }
    }
}
/*
/* NB Fajl:'./components/complex/location/location-parcel-machine/location-parcel-machine-name/location-parcel-machine-name-1/location-parcel-machine-name-1.css.'
*/:root {
    --nb-location-parcel-machine-name-1-font-size: var(--nb-font-size-12);
    --nb-location-parcel-machine-name-1-font-weight: var(--nb-font-semibold);
    --nb-location-parcel-machine-name-1-color: var(--nb-text-color-primary);
    --nb-location-parcel-machine-name-1-line-height: var(--nb-body-line-height);
}

.nb-location-parcel-machine-name-1 .custom-text {
    font-size: var(--nb-location-parcel-machine-name-1-font-size);
    font-weight: var(--nb-location-parcel-machine-name-1-font-weight);
    color: var(--nb-location-parcel-machine-name-1-color);
}
/*
/* NB Fajl:'./components/core/box/info-box-4/info-box-4.css.'
*/.nb-info-box-4 {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nb-info-box-4 .nb-link {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nb-info-box-4 .nb-label {
    margin-bottom: 0;
}
/*
/* NB Fajl:'./components/complex/location/location-parcel-machine/location-parcel-machine-type/location-parcel-machine-type-1/location-parcel-machine-type-1.css.'
*/:root {
    --nb-location-parcel-machine-type-1-icon-color: var(--nb-spec-color);

    --nb-location-parcel-machine-type-1-value-font-size: var(--nb-paragraph-xs);
    --nb-location-parcel-machine-type-1-value-font-weight: var(--nb-font-bold);
    --nb-location-parcel-machine-type-1-value-color: var(--nb-text-color-primary);

    --nb-location-parcel-machine-type-1-label-font-size: var(--nb-paragraph-xs);
    --nb-location-parcel-machine-type-1-label-font-weight: var(--nb-font-regular);
    --nb-location-parcel-machine-type-1-label-color: var(--nb-text-color-primary);
}

.nb-location-parcel-machine-type-1 .nb-icon {
    color: var(--nb-location-parcel-machine-type-1-icon-color);
}

.nb-location-parcel-machine-type-1 .nb-label {
    font-size: var(--nb-location-parcel-machine-type-1-value-font-size);
    font-weight: var(--nb-location-parcel-machine-type-1-value-font-weight);
    color: var(--nb-location-parcel-machine-type-1-value-color);
}

.nb-location-parcel-machine-type-1 .custom-text {
    font-size: var(--nb-location-parcel-machine-type-1-label-font-size);
    font-weight: var(--nb-location-parcel-machine-type-1-label-font-weight);
    color: var(--nb-location-parcel-machine-type-1-label-color);
}
/*
/* NB Fajl:'./components/complex/location/location-parcel-machine/location-parcel-machine-city/location-parcel-machine-city-1/location-parcel-machine-city-1.css.'
*/:root {
    --nb-location-parcel-machine-city-1-icon-color: var(--nb-spec-color);

    --nb-location-parcel-machine-city-1-value-font-size: var(--nb-paragraph-xs);
    --nb-location-parcel-machine-city-1-value-font-weight: var(--nb-font-bold);
    --nb-location-parcel-machine-city-1-value-color: var(--nb-text-color-primary);

    --nb-location-parcel-machine-city-1-label-font-size: var(--nb-paragraph-xs);
    --nb-location-parcel-machine-city-1-label-font-weight: var(--nb-font-regular);
    --nb-location-parcel-machine-city-1-label-color: var(--nb-text-color-primary);
}

.nb-location-parcel-machine-city-1 .nb-icon {
    color: var(--nb-location-parcel-machine-city-1-icon-color);
}

.nb-location-parcel-machine-city-1 .nb-label {
    font-size: var(--nb-location-parcel-machine-city-1-value-font-size);
    font-weight: var(--nb-location-parcel-machine-city-1-value-font-weight);
    color: var(--nb-location-parcel-machine-city-1-value-color);
}

.nb-location-parcel-machine-city-1 .custom-text {
    font-size: var(--nb-location-parcel-machine-city-1-label-font-size);
    font-weight: var(--nb-location-parcel-machine-city-1-label-font-weight);
    color: var(--nb-location-parcel-machine-city-1-label-color);
}
/*
/* NB Fajl:'./components/complex/location/location-parcel-machine/location-parcel-machine-address/location-parcel-machine-address-1/location-parcel-machine-address-1.css.'
*/:root {
    --nb-location-parcel-machine-address-1-icon-color: var(--nb-spec-color);

    --nb-location-parcel-machine-address-1-value-font-size: var(--nb-paragraph-xs);
    --nb-location-parcel-machine-address-1-value-font-weight: var(--nb-font-bold);
    --nb-location-parcel-machine-address-1-value-color: var(--nb-text-color-primary);

    --nb-location-parcel-machine-address-1-label-font-size: var(--nb-paragraph-xs);
    --nb-location-parcel-machine-address-1-label-font-weight: var(--nb-font-regular);
    --nb-location-parcel-machine-address-1-label-color: var(--nb-text-color-primary);
}

.nb-location-parcel-machine-address-1 .nb-icon {
    color: var(--nb-location-parcel-machine-address-1-icon-color);
}

.nb-location-parcel-machine-address-1 .nb-label {
    font-size: var(--nb-location-parcel-machine-address-1-value-font-size);
    font-weight: var(--nb-location-parcel-machine-address-1-value-font-weight);
    color: var(--nb-location-parcel-machine-address-1-value-color);
}

.nb-location-parcel-machine-address-1 .custom-text {
    font-size: var(--nb-location-parcel-machine-address-1-label-font-size);
    font-weight: var(--nb-location-parcel-machine-address-1-label-font-weight);
    color: var(--nb-location-parcel-machine-address-1-label-color);
}
/*
/* NB Fajl:'./components/complex/location/location-parcel-machine/location-parcel-machine-working-hours/location-parcel-machine-working-hours-1/location-parcel-machine-working-hours-1.css.'
*/:root {
    --nb-location-parcel-machine-working-hours-1-icon-color: var(--nb-spec-color);

    --nb-location-parcel-machine-working-hours-1-value-font-size: var(--nb-font-size-12);
    --nb-location-parcel-machine-working-hours-1-value-font-weight: var(--nb-font-bold);
    --nb-location-parcel-machine-working-hours-1-value-color: var(--nb-text-color-primary);

    --nb-location-parcel-machine-working-hours-1-label-font-size: var(--nb-font-size-12);
    --nb-location-parcel-machine-working-hours-1-label-font-weight: var(--nb-font-regular);
    --nb-location-parcel-machine-working-hours-1-label-color: var(--nb-text-color-primary);
}

.nb-location-parcel-machine-working-hours-1 .nb-info-box-4  {
    align-items: self-start;
}

.nb-location-parcel-machine-working-hours-1 .nb-icon {
    color: var(--nb-location-parcel-machine-working-hours-1-icon-color);
}

.nb-location-parcel-machine-working-hours-1 .nb-label {
    font-size: var(--nb-location-parcel-machine-working-hours-1-value-font-size);
    font-weight: var(--nb-location-parcel-machine-working-hours-1-value-font-weight);
    color: var(--nb-location-parcel-machine-working-hours-1-value-color);
}

.nb-location-parcel-machine-working-hours-1 .custom-text {
    font-size: var(--nb-location-parcel-machine-working-hours-1-label-font-size);
    font-weight: var(--nb-location-parcel-machine-working-hours-1-label-font-weight);
    color: var(--nb-location-parcel-machine-working-hours-1-label-color);
    line-height: 20px;
}

.nb-location-parcel-machine-working-hours-1 .nb-location-parcel-machine-working-hours-wh {
    margin-top: 5px;
    padding-left: 20px;
    text-decoration: underline;
    cursor: pointer;
}
/*
/* NB Fajl:'./components/complex/location/location-parcel-machine/location-parcel-machine-payment-type/location-parcel-machine-payment-type-1/location-parcel-machine-payment-type-1.css.'
*/:root {
    --nb-location-parcel-machine-payment-type-1-icon-color: var(--nb-spec-color);

    --nb-location-parcel-machine-payment-type-1-color: var(--nb-text-color-primary);
    --nb-location-parcel-machine-payment-type-1-font-size: var(--nb-font-size-12);
    --nb-location-parcel-machine-payment-type-1-font-weight: var(--nb-font-weight-400);
}

.nb-location-parcel-machine-payment-type-1 {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.nb-location-parcel-machine-payment-type-1 .nb-location-parcel-machine-payment-type-card,
.nb-location-parcel-machine-payment-type-1 .nb-location-parcel-machine-payment-type-cash {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nb-location-parcel-machine-payment-type-1 .nb-location-parcel-machine-payment-type-1-label,
.nb-location-parcel-machine-payment-type-1 .nb-location-parcel-machine-payment-type-card,
.nb-location-parcel-machine-payment-type-1 .nb-location-parcel-machine-payment-type-cash {
    color: var(--nb-location-parcel-machine-payment-type-1-color);
    font-size: var(--nb-location-parcel-machine-payment-type-1-font-size);
    font-weight: var(--nb-location-parcel-machine-payment-type-1-font-weight);
}

.nb-location-parcel-machine-payment-type-1 .nb-location-parcel-machine-payment-type-card .nb-icon,
.nb-location-parcel-machine-payment-type-1 .nb-location-parcel-machine-payment-type-cash .nb-icon {
    color: var(--nb-location-parcel-machine-payment-type-1-icon-color);
}
/*
/* NB Fajl:'./components/complex/location/location-map-popup/location-map-popup-3/location-map-popup-3.css.'
*/.gm-style-iw-chr {
    display: none;
}

.gm-style .gm-style-iw-c {
    border-radius: var(--nb-border-radius-xs);
}

.nb-location-map-popup-3 {
    padding-top: 10px;
}

.nb-location-map-popup-3 .nb-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    gap: 10px;
}

.nb-location-map-popup-3 .nb-location-parcel-machine-choose-btn .nb-btn {
    min-width: 85px;
}

.nb-location-map-popup-3 .nb-main-wrapper {
    display: flex;
    gap: 10px;
}

.nb-location-map-popup-3 .nb-location-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.nb-location-map-popup-3 .nb-location-parcel-machine-working-hours-wh {
    display: none;
}
/*
/* NB Fajl:'./components/complex/location/location-parcel-machine/location-parcel-machine-box-1/location-parcel-machine-box-1.css.'
*/:root {
    --nb-location-parcel-machine-box-1-border-width: var(--nb-border-width);
    --nb-location-parcel-machine-box-1-border-color: var(--nb-border-color);
    --nb-location-parcel-machine-box-1-active-border-color: var(--nb-spec-color);
    --nb-location-parcel-machine-box-1-border-radius: var(--nb-border-radius-xs);
}

.nb-location-parcel-machine-box-1 {
    border: var(--nb-location-parcel-machine-box-1-border-width) var(--nb-border-style) var(--nb-location-parcel-machine-box-1-border-color);
    border-radius: var(--nb-location-parcel-machine-box-1-border-radius);
    padding: 10px 15px;
    cursor: pointer;
}

.nb-location-parcel-machine-box-1.active {
    border-color: var(--nb-location-parcel-machine-box-1-active-border-color);
}

.nb-location-parcel-machine-box-1 .nb-location-parcel-machine-choose-btn .nb-btn {
    min-width: 85px;
}

.nb-location-parcel-machine-box-1 .nb-title-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.nb-location-parcel-machine-box-1 .nb-location-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.nb-location-parcel-machine-box-1 .nb-location-parcel-machine-working-hours-1 .custom-text {
    max-height: 20px;
    overflow: hidden;
}
/*
/* NB Fajl:'./components/complex/location/location-parcel-machine/location-parcel-machine-form-search-1/location-parcel-machine-form-search-1.css.'
*/.nb-location-parcel-machine-form-search-1 .nb-form-group .nb-icon {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
}

.nb-location-parcel-machine-form-search-1 .nb-form-group .nb-search-location {
    display: block;
}

.nb-location-parcel-machine-form-search-1 .nb-form-group .nb-input:not(:placeholder-shown) ~ .nb-search-location {
    display: none;
}

.nb-location-parcel-machine-form-search-1 .nb-form-group .nb-delete {
    display: none;
}

.nb-location-parcel-machine-form-search-1 .nb-form-group .nb-input:not(:placeholder-shown) ~ .nb-delete {
    display: block;
}
/*
/* NB Fajl:'./components/complex/location/location-parcel-machine/location-parcel-machine-list/location-parcel-machine-list-1/location-parcel-machine-list-1.css.'
*/.nb-location-parcel-machine-list-1 {

    padding-right: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nb-location-parcel-machine-list-1 .nb-location-wrapper {
    overflow-y: auto;
    max-height: 415px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nb-location-parcel-machine-list-1.nb-custom-scroll-1 {
    --nb-scroll-1-width: 3px;
}
/*
/* NB Fajl:'./components/core/text/custom-text-with-icon-1/custom-text-with-icon-1.css.'
*/:root {
    --nb-custom-text-with-icon-1-padding-x: 12px;
    --nb-custom-text-with-icon-1-padding-y: 10px;
    --nb-custom-text-with-icon-1-bg: var(--nb-color-gray-100);
    --nb-custom-text-with-icon-1-text-font-size: var(--nb-font-size-14);
    --nb-custom-text-with-icon-1-text-font-weight: var(--nb-font-regular);
    --nb-custom-text-with-icon-1-text-color: var(--nb-text-color-primary);
    --nb-custom-text-with-icon-1-icon-color: var(--nb-spec-color);
}

.nb-custom-text-with-icon-1 {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: var(--nb-custom-text-with-icon-1-padding-y) var(--nb-custom-text-with-icon-1-padding-x);
    background-color: var(--nb-custom-text-with-icon-1-bg);
}

.nb-custom-text-with-icon-1 .custom-text {
    font-size: var(--nb-custom-text-with-icon-1-text-font-size);
    font-weight: var(--nb-custom-text-with-icon-1-text-font-weight);
    color: var(--nb-custom-text-with-icon-1-text-color);
}

.nb-custom-text-with-icon-1 .nb-icon {
    color: var(--nb-custom-text-with-icon-1-icon-color);
}
/*
/* NB Fajl:'./components/core/box/box-27/box-27.css.'
*/:root {
    --nb-box-27-border-width: var(--nb-border-width);
    --nb-box-27-border-color: var(--nb-border-color);

    --nb-box-27-custom-text-one-font-size: var(--nb-font-size-12);
    --nb-box-27-custom-text-one-font-weight: var(--nb-font-regular);
    --nb-box-27-custom-text-one-color: var(--nb-text-color-primary);

    --nb-box-27-custom-text-two-font-size: var(--nb-font-size-12);
    --nb-box-27-custom-text-two-font-weight: var(--nb-font-semibold);
    --nb-box-27-custom-text-two-color: var(--nb-text-color-primary);
}

.nb-box-27 {
    display: flex;
    gap: 10px;
    padding: 12px;
    border: var(--nb-box-27-border-width) var(--nb-border-style) var(--nb-box-27-border-color);
    cursor: pointer;
}

.nb-box-27 .nb-first-icon {
    flex: 1;
    font-size: 32px;
}

.nb-box-27 .nb-second-icon {
    flex: 1;
    align-self: center;
    color: var(--nb-spec-color);
}

.nb-box-27 .nb-info-wrapper {
    flex: 8;
}

.nb-box-27 .nb-info-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.nb-box-27 .nb-info-wrapper .nb-custom-text-one {
    font-size: var(--nb-box-27-custom-text-one-font-size);
    font-weight: var(--nb-box-27-custom-text-one-font-weight);
    color: var(--nb-box-27-custom-text-one-color);
}

.nb-box-27 .nb-info-wrapper .nb-custom-text-two {
    font-size: var(--nb-box-27-custom-text-two-font-size);
    font-weight: var(--nb-box-27-custom-text-two-font-weight);
    color: var(--nb-box-27-custom-text-two-color);
}
/*
/* NB Fajl:'./components/complex/location/location-parcel-machine/location-parcel-machine-size/location-parcel-machine-size-1/location-parcel-machine-size-1.css.'
*/:root {
    --nb-location-parcel-machine-size-1-icon-border-width: var(--nb-border-width);
    --nb-location-parcel-machine-size-1-icon-border-color: var(--nb-border-color);
    --nb-location-parcel-machine-size-1-icon-border-radius: var(--nb-border-radius-full);
    --nb-location-parcel-machine-size-1-checked-icon-border-color: var(--nb-spec-color);

    --nb-location-parcel-machine-size-1-border-active-color: var(--nb-spec-color);
}

.nb-location-parcel-machine-size-1.checked {
    border-color: var(--nb-location-parcel-machine-size-1-border-active-color);
}

.nb-location-parcel-machine-size-1 .nb-second-icon {
    width: 16px;
    height: 16px;
    border: var(--nb-location-parcel-machine-size-1-icon-border-width) var(--nb-border-style) var(--nb-location-parcel-machine-size-1-icon-border-color);
    border-radius: var(--nb-location-parcel-machine-size-1-icon-border-radius);
}

.nb-location-parcel-machine-size-1.checked .nb-second-icon {
    border-color: var(--nb-location-parcel-machine-size-1-checked-icon-border-color);
}

.nb-location-parcel-machine-size-1 .nb-second-icon:before {
    content: '';
    height: 13px;
    width: 13px;
    position: relative;
    top: -2px;
}

.nb-location-parcel-machine-size-1.checked .nb-second-icon:before {
    content: '\F26E';
}
/*
/* NB Fajl:'./components/complex/location/location-parcel-machine/location-parcel-machine-size-list/location-parcel-machine-size-list-1/location-parcel-machine-size-list-1.css.'
*/.nb-location-parcel-machine-size-list-1 {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nb-location-parcel-machine-size-list-1 > * {
    flex: 1;
}
/*
/* NB Fajl:'./components/complex/location/location-mobile-map-controls/location-mobile-map-controls-1/location-mobile-map-controls-1.css.'
*/:root {
    --nb-location-mobile-map-controls-1-bg: var(--nb-color-gray-100);
    --nb-location-mobile-map-controls-1-active-bg: var(--nb-color-white);

    --nb-location-mobile-map-controls-1-active-border-width: var(--nb-border-width);
    --nb-location-mobile-map-controls-1-active-border-color: transparent;
    --nb-location-mobile-map-controls-1-active-active-border-color: var(--nb-spec-color);

    --nb-location-mobile-map-controls-1-color: var(--nb-text-color-secondary);
    --nb-location-mobile-map-controls-1-active-color: var(--nb-text-color-primary);
    --nb-location-mobile-map-controls-1-font-size: var(--nb-font-size-16);
    --nb-location-mobile-map-controls-1-font-weight: var(--nb-font-semibold);
}

.nb-location-mobile-map-controls-1 {
    display: none;
    align-items: center;
}

.nb-location-mobile-map-controls-1 > * {
    flex: 0 0 50%;
    text-align: center;
    line-height: 45px;
    border-bottom: var(--nb-location-mobile-map-controls-1-active-border-width) var(--nb-border-style) var(--nb-location-mobile-map-controls-1-active-border-color);
    color: var(--nb-location-mobile-map-controls-1-color);
    font-size: var(--nb-location-mobile-map-controls-1-font-size);
    font-weight: var(--nb-location-mobile-map-controls-1-font-weight);
    background-color: var(--nb-location-mobile-map-controls-1-bg);
}

.nb-location-mobile-map-controls-1 > *.active {
    color: var(--nb-location-mobile-map-controls-1-active-color);
    background-color: var(--nb-location-mobile-map-controls-1-active-bg);
    border-bottom-color: var(--nb-location-mobile-map-controls-1-active-active-border-color);
}

@media screen and (max-width: 576px) {
    .nb-location-mobile-map-controls-1 {
        display: flex;
    }
}
/*
/* NB Fajl:'./_blocks/checkout/checkout-delivery/parcel-machine/parcel-machine-modal-1/parcel-machine-modal-1.css.'
*//* Stil za prvi modal */
.nb-parcel-machine-modals-block .nb-parcel-machine-modal-1 .nb-modal-body {
    padding: 20px 40px;
}

.nb-parcel-machine-modals-block .nb-parcel-machine-modal-1 .nb-modal-body > * + *{
    margin-top: 20px;
}

.nb-parcel-machine-modals-block .nb-parcel-machine-modal-1 .nb-modal-body .nb-html-editor:has(.nb-default-parcel-machine-content) {
    width: 100%;
}

.nb-parcel-machine-modals-block .nb-parcel-machine-modal-1 .nb-modal-body .nb-html-editor .nb-default-parcel-machine-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.nb-parcel-machine-modals-block .nb-parcel-machine-modal-1 .nb-modal-body .nb-html-editor .nb-default-parcel-machine-content .nb-custom-text-with-icon-1 {
    padding: 0;
    background-color: unset;
}

.nb-parcel-machine-modals-block .nb-parcel-machine-modal-1 .nb-modal-body .nb-btn {
    min-width: 200px;
}

.nb-parcel-machine-modals-block .nb-parcel-machine-modal-1 .nb-select.region-error {
    border-color: var(--nb-color-danger);
}

.nb-parcel-machine-modals-block .nb-icon-left-title-and-description-right-horizontal {
    padding-right: 10px;
}

.nb-parcel-machine-modals-block .nb-icon-left-title-and-description-right-horizontal .nb-icon {
    color: var(--nb-color-black);
    font-size: 30px;
}

.nb-parcel-machine-modals-block .nb-icon-left-title-and-description-right-horizontal .nb-title {
    font-size: var(--nb-font-size-14);
    font-weight: var(--nb-font-bold);
    margin-bottom: 5px;
}

.nb-parcel-machine-modals-block .nb-modal .nb-modal-header.nb-modal-header-center {
    justify-content: start;
}


/* Stil za drugi modal */

.nb-parcel-machine-modals-block .nb-parcel-machine-modal-2 .nb-parcel-machine-step-one-label {
    font-size: var(--nb-font-size-16);
    font-weight: var(--nb-font-semibold);
    color: var(--nb-text-color-primary);
    margin-bottom: 15px;
}

.nb-parcel-machine-modals-block .nb-parcel-machine-modal-2 #locations-map {
    width: 100%;
    height: 100%;
    min-height: 415px;
}

.nb-parcel-machine-modals-block .nb-parcel-machine-modal-2 .nb-parcel-machine-step-two-label {
    font-size: var(--nb-font-size-16);
    font-weight: var(--nb-font-semibold);
    color: var(--nb-text-color-primary);
    margin-bottom: 15px;
    margin-top: 20px;
}

.nb-parcel-machine-modals-block .nb-parcel-machine-modal-2 .nb-location-parcel-machine-confirm-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nb-parcel-machine-modals-block .nb-parcel-machine-modal-2 .nb-location-parcel-machine-confirm-btn .nb-btn {
    margin-top: 20px;
    min-width: 300px;
}
@media screen and (max-width: 768px) {
    .nb-parcel-machine-modals-block .nb-icon-left-title-and-description-right-horizontal .nb-paragraph {
        font-size: var(--nb-font-size-12);
    }
    .nb-parcel-machine-modals-block {
        --nb-dt-rows: auto;
    }
}

@media screen and (max-width: 576px) {
    .nb-parcel-machine-modal-2 .nb-modal-body:has(.nb-location-mobile-panel-control.active)  .nb-map,
    .nb-parcel-machine-modal-2 .nb-modal-body:has(.nb-location-mobile-map-control.active)  .nb-locations-list-panel{
        display: none;
    }
    .nb-parcel-machine-modal-2 .nb-modal-body:has(.nb-location-mobile-map-control.active)  .nb-map,
    .nb-parcel-machine-modal-2 .nb-modal-body:has(.nb-location-mobile-panel-control.active)  .nb-locations-list-panel{
        display: block;
        height: 100%;
    }
    .nb-parcel-machine-modal-2 .nb-modal-body:has(.nb-location-mobile-panel-control.active) .nb-location-parcel-machine-list-1 .nb-location-wrapper{
        max-height: 70vh;
        min-height: unset;
    }
    .nb-parcel-machine-modals-block .nb-parcel-machine-modal-2 #locations-map{
        min-height: 70vh;
    }

}

/*
/* NB Fajl:'./components/complex/cart/cart-item-size-list/cart-item-size-list-2/cart-item-size-list-2.css.'
*/:root {
    --nb-cart-item-size-list-2-size-min-width: 45px;
    --nb-cart-item-size-list-2-size-min-height: 32px;

    --nb-cart-item-size-list-2-size-font-size: var(--nb-font-size-12);
    --nb-cart-item-size-list-2-size-font-weight: var(--nb-font-regular);
    --nb-cart-item-size-list-2-size-border-color: var(--nb-border-color);
    --nb-cart-item-size-list-2-size-color: var(--nb-size-box-1-color);
    --nb-cart-item-size-list-2-size-bg: transparent;

    --nb-cart-item-size-list-2-size-active-border-color: var(--nb-color-black);
    --nb-cart-item-size-list-2-size-active-color: var(--nb-size-box-1-color);
    --nb-cart-item-size-list-2-size-active-bg: transparent;

    --nb-cart-item-size-list-2-size-disabled-border-color: var(--nb-border-color);
    --nb-cart-item-size-list-2-size-disabled-color: var(--nb-text-color-secondary);
    --nb-cart-item-size-list-2-size-disabled-bg: transparent;
}

.nb-cart-item-size-list-2 {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.nb-cart-item-size-list-2 .nb-size-value-box-1 {
    min-width: var(--nb-cart-item-size-list-2-size-min-width);
    min-height: var(--nb-cart-item-size-list-2-size-min-height);
    padding: 5px;
    font-size: var(--nb-cart-item-size-list-2-size-font-size);
    font-weight: var(--nb-cart-item-size-list-2-size-font-weight);
    color: var(--nb-cart-item-size-list-2-size-color);
    border-color: var(--nb-cart-item-size-list-2-size-border-color);
    background-color: var(--nb-cart-item-size-list-2-size-bg);
}

.nb-cart-item-size-list-2 .nb-size-value-box-1.active {
    color: var(--nb-cart-item-size-list-2-size-active-color);
    border-color: var(--nb-cart-item-size-list-2-size-active-border-color);
    background-color: var(--nb-cart-item-size-list-2-size-active-bg);
}

.nb-cart-item-size-list-2 .nb-size-value-box-1.disabled {
    color: var(--nb-cart-item-size-list-2-size-disabled-color);
    border-color: var(--nb-cart-item-size-list-2-size-disabled-border-color);
    background-color: var(--nb-cart-item-size-list-2-size-disabled-bg);
    opacity: 0.5;
}
/*
/* NB Fajl:'./components/complex/cart/cart-item-change-size/cart-item-change-size-picker-2/cart-item-change-size-picker-2.css.'
*/:root {
    --nb-cart-item-change-size-picker-2-tab-link-font-size: var(--nb-font-size-16);
    --nb-cart-item-change-size-picker-2-tab-link-font-weight: var(--nb-font-regular);
    --nb-cart-item-change-size-picker-2-tab-link-color: var(--nb-text-color-secondary);
    --nb-cart-item-change-size-picker-2-tab-active-link-color: var(--nb-size-type-link-1-color);

    --nb-cart-item-change-size-picker-2-label-font-size: var(--nb-font-size-14);
    --nb-cart-item-change-size-picker-2-label-font-weight: var(--nb-font-semibold);
    --nb-cart-item-change-size-picker-2-label-color: var(--nb-text-color-primary);
}


.nb-cart-item-change-size-picker-2 .nb-size-type-wrapper {
    display: flex;
    gap: 40px;
    margin-bottom: 10px;
}

.nb-cart-item-change-size-picker-2 .nb-size-type-wrapper .nb-size-type-link-1{
    font-size: var(--nb-cart-item-change-size-picker-2-tab-link-font-size);
    font-weight: var(--nb-cart-item-change-size-picker-2-tab-link-font-weight);
    color: var(--nb-cart-item-change-size-picker-2-tab-link-color);
}

.nb-cart-item-change-size-picker-2 .nb-size-type-wrapper .nb-size-type-link-1.active {
    color: var(--nb-cart-item-change-size-picker-2-tab-active-link-color);
    text-decoration: underline;
}

.nb-cart-item-change-size-picker-2 .nb-text {
    font-size: var(--nb-cart-item-change-size-picker-2-label-font-size);
    font-weight: var(--nb-cart-item-change-size-picker-2-label-font-weight);
    color: var(--nb-cart-item-change-size-picker-2-label-color);
    margin-bottom: 10px;
}

.nb-cart-item-change-size-picker-2 .nb-cart-item-size-list-2 {
    margin-bottom: 20px;
}

.nb-cart-item-change-size-picker-2 .nb-btn-wrapper {
    border-top: var(--nb-border-width) var(--nb-border-style) var(--nb-border-color);
    padding-top: 10px;
}

.nb-cart-item-change-size-picker-2 .nb-btn-wrapper .nb-btn {
    width: 100%;
}


/*
/* NB Fajl:'./components/complex/cart/cart-product-item/cart-product-item-8/cart-product-item-8.css.'
*/:root {
    --nb-cart-product-item-8-prev-price-font-size: var(--nb-font-size-14);
    --nb-cart-product-item-8-prev-price-font-weight: var(--nb-font-regular);
    --nb-cart-product-item-8-prev-price-color: var(--nb-price-prev-color);

    --nb-cart-product-item-8-active-price-font-size: var(--nb-font-size-18);
    --nb-cart-product-item-8-active-price-font-weight: var(--nb-font-bold);
    --nb-cart-product-item-8-active-price-color: var(--nb-cart-price-with-discount-color);

    --nb-cart-product-item-8-product-name-font-size: var(--nb-font-size-16);
    --nb-cart-product-item-8-product-name-font-weight: var(--nb-font-regular);
    --nb-cart-product-item-8-product-name-color: var(--nb-text-color-primary);
}

.nb-cart-product-item-8 .nb-product-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: var(--nb-border-width) var(--nb-border-style) var(--nb-border-color);
}

.nb-cart-product-item-8 .nb-product-image-info-wrapper {
    display: flex;
    gap: 10px;
    flex-grow: 1;
}

.nb-cart-product-item-8 .nb-price-wrapper {
    flex-shrink: 0;
    text-align: right;
}

.nb-cart-product-item-8 .nb-product-image-info-wrapper .nb-img-wrapper {
    max-width: 60px;
    flex-shrink: 0;
}

.nb-cart-product-item-8  .nb-cart-item-name .nb-title,
.nb-cart-product-item-8  .nb-cart-item-name {
    font-size: var(--nb-cart-product-item-8-product-name-font-size);
    font-weight: var(--nb-cart-product-item-8-product-name-font-weight);
    color: var(--nb-cart-product-item-8-product-name-color);
}

.nb-cart-product-item-8 .nb-price-wrapper .nb-price-prev {
    font-size: var(--nb-cart-product-item-8-prev-price-font-size);
    font-weight: var(--nb-cart-product-item-8-prev-price-font-weight);
    color: var(--nb-cart-product-item-8-prev-price-color);
    text-decoration: line-through;
}

.nb-cart-product-item-8 .nb-price-wrapper .nb-cart-price-with-discount {
    font-size: var(--nb-cart-product-item-8-active-price-font-size);
    font-weight: var(--nb-cart-product-item-8-active-price-font-weight);
    color: var(--nb-cart-product-item-8-active-price-color);

}

.nb-cart-product-item-8 .nb-cart-price-with-discount-label {
    display: none;
}

@media screen and (max-width: 768px) {
    :root {
        --nb-cart-product-item-8-product-name-font-size: var(--nb-font-size-14);
        --nb-cart-product-item-8-active-price-font-size: var(--nb-font-size-16);
        --nb-cart-product-item-8-prev-price-font-size: var(--nb-font-size-12);
    }
}

/*
/* NB Fajl:'./_blocks/checkout/cart-items/cart-product-size-picker/cart-product-size-picker-1/cart-product-size-picker-1.css.'
*/.nb-cart-product-items-3.block {
    padding: 20px;
    background-color: var(--nb-cart-block-bg);
}

.nb-cart-product-items-3.block .nb-cart-heading-1 {
    margin-bottom: 20px;
}

.nb-cart-product-items-3.block .nb-cart-benefits-info-box-2 {
    margin: 20px -20px -20px;
}
@media screen and (max-width: 768px) {
    .nb-cart-product-items-3.block {
        padding: 20px 15px;
    }
    .nb-cart-product-items-3.block .nb-cart-benefits-info-box-2 {
        margin: 20px -15px -20px;
    }
}
/*
/* NB Fajl:'./static/css/nbtemplates/op-checkout-tmp-2.css.'
*/body.nbtmp-op-checkout-tmp-2 {
    padding: 90px 0 0 0;

    .nb-container-1200:has(.nb-delivery-address-form-2) {
        padding-inline: 40px;

        > .row > .col-12:has(.nb-cart-total-4){
            position: sticky;
            top: 40px;
            height: fit-content;
        }
    }

    .row:has(.nb-delivery-address-form-2) {
        margin-inline: -40px;
    }

    .row:has(.nb-delivery-address-form-2) > * {
        padding-inline: 40px;
    }
}

body.nbtmp-op-checkout-tmp-2::after {
    content: "";
    position: fixed;
    top: 0;
    left: 50%;
    height: 100%;
    width: 50vw;
    background-color: var(--nb-color-gray-100);
    pointer-events: none;
    z-index: -1;
}

.nbtmp-op-checkout-tmp-2 .nb-text-link-grid-w-offcanvas-content-1{
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--nb-color-gray-200);
}

@media screen and (max-width: 992px) {
    body.nbtmp-op-checkout-tmp-2::after {
        display: none;
    }

    body.nbtmp-op-checkout-tmp-2 {


        .nb-container-1200:has(.nb-delivery-address-form-2) {
            padding-inline: 10px;

            > .row > .col-12:has(.nb-cart-total-4){
                position: relative;
                top: unset;
            }

            > .row > .col-12:first-child {
                position: static;

                .nb-text-editor-1{
                    position: absolute;
                    top: 20px;
                    left: 50%;
                    transform: translateX(-50%);

                    &+.block{
                        margin-top: 0;
                    }
                }
            }

            > .row > .col-12:last-child {
                display: flex;
                flex-direction: column;
                gap: 40px;

                > .block {
                    margin: 0 !important;
                }

                .nb-cart-total-4 {
                    order: -1;
                }

                .nb-cart-product-items-4{
                    background: var(--nb-color-gray-100);
                    margin-inline: -10px;
                }
            }
        }

        .row:has(.nb-delivery-address-form-2) {
            margin-inline: -10px;
        }

        .row:has(.nb-delivery-address-form-2) > * {
            padding-inline: 10px;
        }

        .nb-container-1200 > .row {
            flex-direction: column-reverse;
        }
    }
}
/*
/* NB Fajl:'./nbthemes/nbshop_reebok/css/nb7.custom.css.'
*//*Reset*/
*{
    text-underline-offset: 4px;
}
.nb-slider-dots .slick-dots > li{
    box-shadow: none !important;
}
.nb-accordion-2 .nb-toggle-icon:before{
    content: "\e9ea";
}
.bi-heart:before{
    content:"\e9a1";
}
.nb-pagination .nb-page-item.nb-prev .nb-page-link,
.nb-pagination .nb-page-item.nb-next .nb-page-link{
    border: none;
    background: transparent !important;
    color: var(--nb-color-black) !important;
}
.nb-show-hide-password{
    display: block;
    bottom: 14px;
    > .nb-icon {
        font-size: 18px;
    }
}
/* --- */
.container-fluid{
    padding-inline: 50px;
}
.horizontal-navigation-6 .nb-container-large.container{
    max-width: calc(1380px + var(--nb-gutter-x));
}
/* Arrows prod lists */
.nb-smart-product-list-placeholder-1 .nb-slider-arrows {
    top: -40px;
    right: 0;
    width: unset;
    gap: 20px;
    font-size: 20px;
}
.nb-smart-product-list-placeholder-1,
.nb-custom-product-list-carousel-7{
    .nb-slider-arrows .slider-arrow > i{
        width: 40px;
        height: 40px;
        border: 1px solid var(--nb-color-gray-700);
        border-radius: 50%;
    }
}
.layout:has(.nb-custom-product-list-carousel-7){
    padding-right: 0;
    .nb-slider-init{
        margin-right: 0 !important;
        &+.nb-slider-arrows{
            right: 50px !important;
        }
    }
}
/* Secondary font */
.nb-location-map-popup-5 .nb-logo-name-and-description-wrapper .nb-inner-wrapper .nb-location-name-2 .custom-text,
.nb-location-logo-and-name-1 .nb-title,
.login-modal-4 .nb-modal-body .title,
.nb-registration-modal-3 .nb-modal-body .title,
.nb-footer-social-networks .nb-footer-social-networks-title{
    font-family: var(--nb-body-font-family-secondary);
}
.nb-form-radio-button .nb-radio:checked:before{
    width: calc(var(--nb-radio-width) - 10px);
    height: calc(var(--nb-radio-height) - 10px);
}
.nb-form-radio-button .nb-label, .nb-form-check .nb-label{
    color: var(--nb-color-black);
    font-size: 12px;
    margin-left: 8px;
}
.nb-form-radio-button .nb-radio:checked:before{
    background: var(--nb-color-blue-700);
}
.nb-check:checked{
    background-size: 60%;
}
.nb-form-check .nb-label a{
    text-decoration: underline;
    text-underline-offset: 3px;
}
.nb-checkbox-wrapper{
    width: fit-content;
}
.nb-ecommerce-header-16 .nb-logo .nb-img {
    min-width: 100px;
}
.nb-ecommerce-header-16 .nb-header-wrapper{
    box-shadow: 0px 6px 12px 0px #0000001A;
    border-bottom: none;
}
.nb-header-site-user-dropdown-1 .dropdown-menu{
    border: none;
    border-radius: 0;
    box-shadow: 0px 6px 12px 0px #0000001A;
}
.nbtmp-home-page-tmp-26 main > .layout:first-child > .nb-single-banner-17 .nb-img-wrapper{
    aspect-ratio: 1920 / 880;
}
.nb-single-banner-17{
    > .nb-content-wrapper{
        width: 530px;
        max-width: calc(100% - 40px);

        .btn-wrapper .nb-btn{
            background: var(--nb-color-white);
            border-color: var(--nb-color-white);
            font-weight: var(--nb-font-semibold);
        }
    }
    .nb-content-wrapper .nb-display {
        line-height: 1;
    }
}
.nb-slider-item-box-31 .nb-content-wrapper{
    padding: 24px 24px 50px;
}
.layout:not(.layout100percent) .nb-slider .slider .nbf-slider-init:not(.slick-vertical, .nbf-notOnloadSlider:not(.slick-initialized)){
    margin: 0 -5px;
}
.nb-product-prices-3{
    gap: 0;
    min-height: 32px;
}
.nb-product-prices-3 .nb-top-wrapper,
.nb-product-prices-3 .nb-bottom-wrapper {
    gap: 0 5px;
    line-height: 1;
}
.nb-product-card-32 {
    .nb-product-name, .nb-product-name .nb-title{
        font-family: var(--nb-body-font-family);
    }
    .nb-card.nb-product-card .card-body.nb-card-body.nb-product-card-body > * + * {
        margin-top: 2px;
    }
    .nb-product-category-list {
        margin-top: 5px;
    }
    & .nb-product-size-bubble-2 .nb-product-size-list-1 .nb-size-value-box-1 {
        height: 36px;
        padding: 5px;
        font-size: 16px;
    }
    .nb-product-size-bubble-2 .nb-product-size-list-1 .nb-size-value-box-1:not(:nth-of-type(-n+4)):not(:hover):not(.active){
        border-top-color: var(--nb-color-black);
    }
    .nb-product-size-list-1 .nb-size-value-box-1.active, .nb-product-size-list-1 .nb-size-value-box-1:hover, .nb-product-size-list-1 .nb-size-value-box-1:focus{
        margin-top: 0;
    }
    .nb-product-size-list-1 .nb-size-value-box-1.disabled, .nb-product-size-list-1 .nb-size-value-box-1.disabled:hover,
    .nb-product-size-list-1 .nb-size-value-box-1.disabled:focus{
        opacity: 1;
        background: var(--nb-color-white);
        color: var(--nb-color-black);
        position: relative;
        border: 1px solid var(--nb-color-black) !important;

        &::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(
                    to bottom right,
                    transparent calc(50% - 1px),
                    black 50%,
                    transparent calc(50% + 1px)
            );
            pointer-events: none;
        }
    }
    .nb-product-button-with-bubble-2 .nb-selected-size-1{
        font-weight: var(--nb-font-regular);
    }
    .nb-product-size-list-1 .nb-size-value-box-1:not(:nth-of-type(-n+6)){
        border-top: 1px solid;
    }
}
.nb-custom-product-list-carousel-7{
    .nb-product-list-link-button .nb-btn{
        min-width: 133px;
        background: var(--nb-color-white);
        color: var(--nb-color-black);
        transition: all .2s ease-in-out;
        font-weight: var(--nb-font-semibold);
        font-size: 16px;
        &:hover{
            background: var(--nb-color-black);
            color: var(--nb-color-white);
        }
    }
    & .slider .nb-slider-arrows {
       gap: 10px;
        .slick-disabled{
            opacity: .4;
        }
    }
}
.nb-smart-product-list-placeholder-1 .nb-slider-arrows{
    gap: 10px;
    .slick-disabled{opacity: .4}
}
body.nbtmp-home-page-tmp-26{
    .layout:has(.nb-single-banner-17):has(.nb-custom-product-list-carousel-8) {
        .nb-custom-product-list-carousel-8 > .nb-slider > .slider > .nb-slider-init,
        .nb-single-banner-17 .nb-img{
            aspect-ratio: 900 / 960;
            object-fit: cover;
        }
    }
}
.custom-product-list-carousel-8 .nb-custom-scroll-1{
    --nb-scroll-1-bg: var(--nb-color-red);
}

/* Footer */
.nb-ecommerce-footer-20 {
    .nb-user-register-1 .nb-content-wrapper .description {
        line-height: 20px;
    }

    .nb-user-register-1 {
        .nb-btn,
        .form-floating .form-control.nb-input {
            border-radius: 0;
            text-transform: none;
        }
    }

    & .nb-footer-links .nb-collapse-button.bi-chevron-down:before{
        top: 20px
    }
    .nb-footer-links .nb-title{
        font-family: var(--nb-body-font-family-secondary) !important;
    }

    & .nb-footer-payment-cards {
        justify-content: center;
        .nb-img-wrapper:has(img[src*="intesa"]){
            width: 100%; text-align: center;
            .nb-img{max-height: 50px;}
        }
        .nb-img {
            max-height: 50px;
        }
    }

}
.login-modal-4{
    .nb-btn{
        height: 54px;
        line-height: 52px;
        padding-block: 0;
    }
    .nb-registration-wrapper .nb-btn{
        color: var(--nb-color-black);
        background: var(--nb-color-white);
        border-color: var(--nb-color-black);
        &:hover{
            color: var(--nb-color-white);
            background: var(--nb-color-black);
        }
    }
    .modal-body{
        padding-top: 0;
        > .title {
            font-size: 16px;
        }
    }
    .nb-modal-body .nb-login-form-2 .nb-registration-wrapper {
        padding-top: 20px;
        border-top: 1px solid var(--nb-color-gray-200);
    }
    .nb-login-form-2 .nb-login-forgot-password-link{
        text-decoration: underline;
        text-underline-offset: 4px;
    }
    .nb-modal-header{
        padding-bottom: 0;
        height: 40px;
    }
}
.nb-registration-modal-3 {
    .nb-modal-body {
        padding-top: 0;
    }
    .nb-modal-header{
        padding-bottom: 0;
        height: 40px;
    }
    & .nb-modal-body {
        > .title {
            font-size: 17px;
            font-weight: 700;
        }
    }
    .nb-register-form-physical-user-1 .nb-btn.nb-btn-form{
        height: 54px;
        padding-block: 0;
        line-height: 52px;
    }
    .nb-register-form-physical-user-1 .nb-login-link-wrapper .nb-link{
        text-decoration: underline;
        text-underline-offset: 4px;
    }
}

.nb-mini-cart-offcanvas .nb-offcanvas-header .nb-offcanvas-title{
    text-transform: uppercase;
}
.nb-free-delivery-info-4{
    background: var(--nb-color-blue-700);
}
.nb-cart-box-10 .nb-price.nb-price-prev + .nb-price-prev{
    width: 100%;
}
.nb-cart-items-list > .nb-product-item + .nb-product-item{
    border-color: var(--nb-color-gray-200);
}
.nb-cart-items-list > .nb-product-item:last-child{
    border-bottom: 1px solid var(--nb-color-gray-200);
    padding-bottom: 20px;
}
.nb-recommended-product-list-3{
    padding-top: 10px;
    border-top: 1px solid var(--nb-color-gray-200);
    &.nb-collapsed{
        height: 85px;
    }
    .nb-toggle{
        top: 20px;
        pointer-events: none;
    }
    .nb-mini-cart-recommended-products-title:after{
        content: '';
        position: absolute;
        top: -10px;
        bottom: -10px;
        left: 0;
        width: 100%;
    }
    .nb-product-card-32{
        .nb-product-name{
            --nb-dt-rows: 2;
        }

        .nb-product-prices-3{
            height: 45px;
        }
        .nb-product-prices-3 .nb-price-prev{
            color: var(--nb-color-gray-600);
        }
        .nb-card.nb-product-card .card-body.nb-card-body.nb-product-card-body > * + * {
            margin-top: 5px;
        }
    }
}
.nb-cart-box-10 .nb-quantity-cart-2{
    .nb-quantity-arrows,
    .nb-quantity-input .nb-input{
        height: 36px;
    }
}
.nb-mini-cart-content-product-6 {
    .nb-basket-link-1 .nb-btn {
        height: 77px;
    }
}
.nb-basket-link-1 .nb-btn > *{
    text-transform: none;
}
/* Search */
.nb-smart-search-modal-4{
    padding: 0 50px;
    .nbf-clear-search-modal-4{
        text-decoration: underline;
        text-underline-offset: 2px;
    }
    .nb-close{
        right: 0;
    }
    .search-modal-top-content-wrapper #search-text{
        border-left: none;
    }
    .nb-message-search-heading .title{
        padding-left: 0;
    }
    .nb-smart-search-3 .search-content-wrapper .left-wrapper{
        margin-left: 0;
    }
    .nb-search-links-2 .title,
    .nb-search-suggestions-3 .title,
    .nb-search-suggestions-4 .title{
        font-size: 14px;
        border-color: var(--nb-color-gray-200);
    }
    .nb-search-links-2 .nb-link,
    .nb-search-suggestions-3 .nb-link,
    .nb-search-suggestions-4 .nb-link{
        font-size: 16px;
    }
    .nb-search-product-grid-4 .nb-grid-link{
        border-radius: 0;
        background: var(--nb-color-black);
    }
}
/* Product Listing */
.nb-product-listing-options-3{
    border-color: var(--nb-color-black);
    .nb-sort-1 .nb-select{
        padding-inline: 10px;
        margin-left: -10px;
    }
}
.nb-product-content-position-3 .nb-favorite .nb-icon{
    font-size: 18px;
}
.nb-product-filter-category-attribute-vertical-1 .count-of-products{
    display: block;
    font-size: 16px;
    font-weight: var(--nb-font-bold);
}
.nb-product-filter-category-attribute-vertical-1{
    .nb-accordion.nb-accordion-2 .nb-accordion-button{
        font-size: 12px;
        line-height: 26px;
        font-weight: var(--nb-font-regular);
    }
    .nb-toggle-icon:before{
        content: "\e9ea";
    }
    .nb-form-check:hover .nb-label{
        color: var(--nb-spec-color)
    }
}
.nb-product-filter-category-attribute-vertical-1 .nb-content-wrapper.nb-applied-filters-wrapper{
    position: relative;
    padding-bottom: 15px;
    border-color: var(--nb-color-gray-200);

    .nb-clear-filters{
        position: absolute;
        float: none;
        bottom: unset;
        top: 0;
        right: 0;
        font-size: 16px;
        text-decoration: underline;
    }
}
.nb-product-listing-options-3 {
    & .left-wrapper, & .right-wrapper {
        & > * {
            &:before {
                background: var(--nb-color-black);
            }
        }
    }
}
.nb-tag-product-applied-filter-tag{
    flex-direction: row-reverse;
    padding-left: 5px;
}
.nb-product-load-more-2{
    margin-top: 80px;
}
.nb-product-load-more-2 .nb-btn{
    height: 52px;
    line-height: 50px;
    padding-block: 0;
}
.nb-product-load-more-2 .nb-btn .nb-load-more-loader{
    top: 15px;
}
.nbtmp-product-listing-page-tmp-18 .nb-product-filter-category-attribute-vertical-1 .nb-content-wrapper::-webkit-scrollbar-track {
    background: var(--nb-color-gray-100);
}
.nbtmp-product-listing-page-tmp-18 .nb-product-filter-category-attribute-vertical-1 .nb-content-wrapper::-webkit-scrollbar-thumb {
    background: var(--nb-color-black);
}
/* Filter size */
.nb-product-filter-category-attribute-vertical-1 .nb-product-listing-filters-wrapper .nb-accordion-item .nb-filter-size-2{
    > .nb-filter-size-wrapper{
        flex-direction: row;
        flex-wrap: wrap;
        gap: 4px;
        >*{
            width: calc(33% - 2px);
        }
    }
    .nb-form-check{
        border: 1px solid var(--nb-color-black);
        padding: 5px;
        height: 40px;
        text-align: center;
        margin-bottom: 0;
        > input{
          opacity: 0;
        }
        .nb-filer-count{
            display: none;
        }
        > label{
            width: 100%;
        }

        &:has(input:checked),
        &:hover{
            background: var(--nb-color-black);
            label{
                color: var(--nb-color-white);
            }
        }
    }
}
/* Product Detail */
.nbtmp-product-detail-page-tmp-22 .nb-product-detail-name-2 .nb-product-name-with-add-to-favourites .nb-product-detail-product-name.nb-title{
    font-size: 28px;
}
.nb-product-detail-size-2 .nb-tab-size-picker-4 .nb-product-size-list-8 .nb-size-value-box-1{
    height: 36px;
}
.nb-product-detail-size-2 .nb-tab-size-picker-4 .nb-product-size-list-8 .nb-size-value-box-1.active,
.nb-product-detail-size-2 .nb-tab-size-picker-4 .nb-product-size-list-8 .nb-size-value-box-1:hover{
    background: var(--nb-color-black);
}
.nb-product-add-to-cart-button-5 .nb-btn.nb-add-to-cart{
    font-size: 22px;
}
.nb-product-name-with-add-to-favourites .nb-favorite .nb-icon{
    font-size: 20px;
    line-height: 1;
}
.nb-product-detail-size-2{
    .nb-product-size-list-8 .nb-size-value-box-1.disabled, .nb-product-size-list-1 .nb-size-value-box-1.disabled:hover,
    .nb-product-size-list-8 .nb-size-value-box-1.disabled:focus{
        opacity: 1 !important;
        background-color: var(--nb-color-white) !important;
        color: var(--nb-color-black);
        position: relative;
        border: 1px solid var(--nb-color-black) !important;

        &::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(
                    to bottom right,
                    transparent calc(50% - 1px),
                    black 50%,
                    transparent calc(50% + 1px)
            );
            pointer-events: none;
        }
    }
}
.nb-product-detail-aidc-list-1 .nb-product-related-image-list-1 .nb-img-wrapper:hover{
    border-color: var(--nb-color-black) !important;
}
.nb-product-related-image-list-1 .nb-product-related-image-list-wrapper > *{
    flex: 0 0 calc(100% / 7 - 5px) !important;
}
.nbtmp-product-detail-page-tmp-22 .nb-product-detail-size-2 .nb-tab-size-picker-4 .nb-selected-size-1 {
    font-weight: var(--nb-product-detail-size-2-selected-size-font-weight);
    font-size: var(--nb-product-detail-size-2-selected-size-font-size);
}
.nb-product-detail-gallery-carousel-3 .nb-discount,
.nb-product-detail-gallery-carousel-2 .nb-discount{
    display: none;
}
.nb-product-detail-short-description-1 {
    padding: 0;
    background-color: transparent;
    border: none;
    font-size: 16px;
}
.nb-smart-product-list-tabs .nb-list-tab.active{
    font-weight: var(--nb-font-bold);
}
.nb-smart-product-list-tabs .nb-list-tab:after{
    display: none;
}
.nb-additional-product-info-displays-accordion-1{
    border-top: 1px solid var(--nb-color-gray-200);

    .nb-accordion.nb-accordion-2 .nb-accordion-button{
        font-size: 16px;
        line-height: 22px;
        font-weight: var(--nb-font-bold);
        padding-block: 25px;

        &:not(.collapsed){
            padding-bottom: 10px;
        }
    }
    .nb-accordion .nb-accordion-body{
        padding-bottom: 25px;
    }
    .nb-accordion.nb-accordion-2 .nb-accordion-item:last-child{
        border-bottom: 1px solid var(--nb-color-gray-200);
    }
    .nb-accordion .accordion-button.collapsed i.nb-toggle-icon:before{
        transform: rotateZ(-90deg);
    }
}
.nb-gallery-zoom .nb-img-wrapper:hover::after, .nb-gallery-item .nb-img-wrapper:hover::after{
    display: none;
}
.nb-gallery-zoom .nb-img-wrapper::before, .nb-gallery-item .nb-img-wrapper::before{
    top: unset;
    left: unset;
    transform: none;
    bottom: 30px;
    right: 30px;
    color: #000000;
}
.nb-smart-product-list-placeholder-1 > .heading-wrapper .nb-title{
    text-transform: uppercase;
}
.nb-heading-with-subheading h1,
.block-heading-with-subheading h1{
    text-transform: uppercase;
}
/* Quick buy modal */
.nb-quick-purchase-modal-placeholder-1{
    .nb-product-detail-breadcrumbs-inline-2{
        order: -1;
    }
    .nb-product-detail-name-2{
        margin-top: -15px !important;
        .nb-favorite{
            left: -30px;
            position: relative;
        }
        .nb-product-name-with-add-to-favourites{
            gap: 50px;
        }
    }
    .nb-product-price-detail-7{
        margin-top: -10px !important;
    }
}

/* Article list */
.nb-article-card-6{
    --nb-dt-rows: auto;
    --nb-rows: auto;
    .nb-title{
        text-transform: uppercase;
    }
}
.nb-article-card-6 .nb-card-body > * + *{
    margin-top: 10px;
}
.nb-article-card-6 .nb-card > .nb-img-wrapper{
    aspect-ratio: 600 / 350;
    object-fit: cover;

    .nb-img{
        object-fit: cover;
    }
}
.nb-article-list-grid-6{
    --nb-gutter-x: 10px;
}
/* Article detail */
.nbtmp-article-detail-tmp-18 .layout:has(.nb-article-detail-heading-2){
    border-radius: 0;
    margin-bottom: 80px;
}
.nb-similar-article-carousel-3 .slick-track{
    margin-left: 0;
}

/* --- */
main:has(.nb-article-list-grid-6) .layout:first-child{
    margin-top: 40px;
}
.layout:first-child:has(.layout .contact-form-1, .layout .vertical-navigation-accordion-1){
    margin-top: 80px;
}
.nb-pagination .nb-page-item.nb-prev:not(.active):hover .nb-page-link, .nb-pagination .nb-page-item.nb-prev:not(.active):focus .nb-page-link, .nb-pagination .nb-page-item:not(.active):hover .nb-page-link, .nb-pagination .nb-page-item:not(.active):focus .nb-page-link{
    border-color: var(--nb-color-black);
}
.nb-menu-two-levels-accordion{
    .nb-link{
        font-weight: var(--nb-font-bold);
        text-transform: uppercase;
    }
    .nb-link-wrapper:not(:has(.submenu)) + .nb-link-wrapper:has(.submenu), .nb-link-wrapper:not(:has(.submenu)):not(:first-child){
        margin-top: 20px;
    }
}
.block.contact-form-1 .nb-form .nb-btn{
    min-width: 350px;
    height: 54px;
    line-height: 52px;
    padding-block: 0;
}
.nbtmp-regular-page-tmp-9 .container > .row > *:first-child,
.nbtmp-basic-contact-form-page-tmp-11 .layout:has(.nb-heading-1) > .row > *:first-child{
    border-color: var(--nb-color-gray-200);
}
/* Faq */
.layout:has(> .nb-article-list-search-bar-2){
    margin-top: 80px;
    margin-bottom: 80px;
}
.nb-article-list-search-bar-2{
    .nb-content-wrapper.article-search-holder{
        max-width: 560px;
        width: 100%;
    }
    .nb-input.nb-input-m{
        height: 40px;
        border-color: var(--nb-color-black);
    }
    .form-floating .nb-input.nb-input-m + .nb-float-label{
        line-height: 40px;
    }
}
.nbtmp-faq-page-accordion-tmp-8{
    .subcategory-links .nbf-slider-init:not(.slick-initialized){
        display: flex;
    }
    .subcategory-links .nb-item{
        padding: 0;
        background: transparent;
        border: none;
        font-size: 14px;
        font-weight: var(--nb-font-bold);
        text-transform: uppercase;
        min-width: unset;
        margin-right: 30px;

        &:hover,
        &.active{
            text-decoration: underline;
            text-decoration-thickness: 2px;
            text-underline-offset: 5px;
        }
    }
    .nb-article-list-accordion-2{
        border-top: 1px solid var(--nb-color-gray-200);
        --nb-accordion-btn-active-bg: transparent;
        --nb-accordion-2-btn-active-bg: transparent;
        --nb-accordion-body-padding-x: 0;

        .nb-accordion .nb-accordion-button{
            .nb-title{
                font-size: 16px;
                line-height: 20px;
                font-weight: var(--nb-font-bold);
            }
            padding-inline: 0;
            padding-block: 20px;
        }
        .nb-accordion .accordion-button .nb-toggle-icon{
            right: 0;
        }
        .nb-accordion .accordion-button.collapsed i.nb-toggle-icon:before{
            transform: rotateZ(-90deg);
        }
        .nb-accordion-body p{
            font-size: 16px;
        }
    }
}
.nbtmp-landing-page-tmp-30 .layout:first-child{
    margin-top: 50px;
}
.nbtmp-landing-page-tmp-31{
    .nb-single-banner-17 {
        > .nb-content-wrapper {
            width: 910px;
            max-width: calc(100% - 40px);
        }
    }
    .nb-single-banner-14 .nb-btn{
        height: 54px;
        line-height: 52px;
        padding-block: 0;
    }
    .nb-slider-item-box-31 .nb-content-wrapper{
        bottom: 30px
    }
}
/* Location list */
.nb-location-map-list-4{
    .nb-custom-scroll-1{
        --nb-scroll-1-bg: #000000;
    }
    .nb-locations-list-panel{
        width: 450px;
        top: 40px;
        left: 50px;
    }
    .nb-location-map-form-3 .nb-form-title{
        text-transform: uppercase;
    }
    .form-control.nb-input.nb-input-2{
        height: 40px;
        border-color: #000000;
        padding-left: 0;
    }
    .nb-locations-location-search .nb-label{
        color: var(--nb-color-gray-600);
        padding-left: 0;
    }
    .nb-location-map-list-item-3{
        .nb-info-box-4 .nb-label,
        .nb-info-box-4 .custom-text{
            font-size: 14px;
            font-weight: var(--nb-font-regular);
        }
        .nb-info-box-4 .nb-icon{
            display: none;
        }
        .nb-location-name-2 .custom-text{
            font-family: var(--nb-body-font-family-secondary);
            font-weight: 700;
        }
    }
    .nb-location-map-popup-5{
        font-family: var(--nb-body-font-family);
        padding: 40px 10px 10px;
        .nb-location-working-hours-2 .nb-icon,
        .nb-info-box-4 .nb-icon{
            display: none;
        }
        > .nb-link{
            font-size: 16px;
            text-align: center;
            color: var(--nb-text-color-primary);
            text-decoration: underline;
        }
        .nb-location-work-time .nb-time{
            justify-content: flex-end;
        }
    }
    .nb-locations-list-panel{
        overscroll-behavior: unset;
        scrollbar-color: unset;
    }
    .nb-locations-list-panel::-webkit-scrollbar {
        width: 6px;
    }
    .nb-locations-list-panel::-webkit-scrollbar-track {
        background: transparent;
    }
    .nb-locations-list-panel::-webkit-scrollbar-thumb:hover,
    .nb-locations-list-panel::-webkit-scrollbar-thumb {
        background: var(--nb-color-black);
    }


}
.nb-location-image-1 {
    .left-wrapper {
        background: var(--nb-color-black);
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 15px;
        >*+* {
             margin-top: 0;
        }
        .nb-location-name .nb-title {
            font-size: 42px;
            line-height: 44px;
            color: var(--nb-color-white);
            text-transform: uppercase;
            font-family: var(--nb-body-font-family-secondary);
        }
        .nb-location-dynamic-working-time-1 {
            & .is-open-info {
                .nb-icon{
                    color: var(--nb-color-white);
                }
                span {
                    font-size: 14px;
                    line-height: 16px;
                }
            }
            .closes-info{
                font-size: 14px;
                color: var(--nb-color-white);
            }
        }
        .nb-location-google-map-link-btn .nb-btn{
            background: var(--nb-color-white);
            border-color: var(--nb-color-white);
            color: var(--nb-color-black);
            min-width: 140px;
            height: 54px;
            line-height: 52px;
            padding-block: 0;
        }
    }
}
.nb-location-address-5 .left-wrapper > .title,
.nb-location-working-hours-3 > .title{
    font-size: 24px;
    text-transform: uppercase;
    font-family: var(--nb-body-font-family-secondary);
}
.nb-location-address-5{
    .map-link,
    .nb-icon{
        display: none;
    }
}
.nb-location-working-hours-3 .nb-location-time-wrapper{
    padding-left: 0;
    & .nb-location-work-time.active:before {
        display: none;
    }
}
.store-content h2{
    font-size: 24px;
    font-weight: var(--nb-font-semibold);
    text-transform: uppercase;
}
/* Order tracking */
.layout:has(>.order-tracking-form-1){
    width: 100%;
}
.layout:has(>.nb-estimated-delivery-time-info-1){
    display: none;
}
.nb-order-status-form .nb-sub-heading{
    font-size: 16px;
    font-family: var(--nb-body-font-family-secondary);
    font-weight: 700;
}
.nbtmp-order-tracking-page-tmp-1{
    .nb-order-tracking-progress-1 .nb-slider-item .nb-info-heading-image-2.checked .nb-img-wrapper{
        border-color: var(--nb-color-blue-700);
    }
    .nb-order-tracking-progress-1 .nb-slider-item .nb-info-heading-image-2.checked .nb-img-wrapper:before{
        color: var(--nb-color-blue-700);
    }
    .nb-order-tracking-item-list-1 .nb-accordion-button .nb-icon-title,
    .nb-order-tracking-status-history-1 .nb-accordion-button .nb-icon-title{
        display: none;
    }
    .nb-accordion.nb-accordion-3 .nb-accordion-button .nb-title{
        font-size: 16px;
    }
    .nb-accordion.nb-accordion-3 .nb-accordion-body{
        padding: 0 20px 20px;
    }
    .nb-accordion.nb-accordion-3 .nb-accordion-button:not(.collapsed){
        background-image: none;
    }
    .nb-order-items-list-1 .nb-desktop-title-wrapper > *{
        font-size: 14px;
    }
    .nb-info-heading-image-2 .nb-info-wrapper .nb-title{
        font-size: 16px;
        &+.custom-text{
            font-size: 14px;
        }
    }
    .nb-info-box-7 .nb-left-col:after,
    .nb-info-box-7 .nb-left-col:before{
        border-color: var(--nb-border-color);
    }
    .nb-order-status-form .form-control.nb-input{
        height: var(--nb-input-height-m);
    }
    .nb-order-status-form .nb-btn{
        height: 54px;
    }
}
.nb-user-order-tracking-1 .nb-order-informations-1 .nb-icon{display: none;}
/* Checkout */
body.nbtmp-op-checkout-tmp-2::after{
    background-color: #F8F9FA;
}
.nb-delivery-option-3 {
    &:has(.nb-radio:checked) .nb-price-icon-wrapper .nb-icon:before{
        color: var(--nb-color-blue-700);
    }
}
.nb-payment-option-3 {
    &:has(.nb-radio:checked) .nb-icon-wrapper .nb-icon:before{
        color: var(--nb-color-blue-700);
    }
}
.nb-billing-address-form-3 {
    & .nb-billing-address-radio.nb-same-address {
        .nb-icon-wrapper .nb-icon:before {
            color: var(--nb-color-blue-700);
        }
    }
}
.nb-cart-product-item-9{
    .nb-right-wrapper{
        flex: 1;
    }
    & .nb-prices-wrapper {
        .nb-cart-price-with-discount{
            font-size: 12px;
            font-weight: 400;
        }
    }
}
.nb-checkout-code-selection-tab-list-2 .nb-tabs.nb-tabs-2 .nb-nav-item .nb-nav-link.active {
    font-weight: 700;
}
.nb-action-loyalty-3 {
    > .nb-paragraph{
        display: none;
    }
    & .input-btn-wrapper {
        gap: 20px;

        & .nb-form-group .nb-input {
            height: 56px;
            + .nb-label{
                line-height: 56px;
            }
        }
        .nb-btn{
            height: 56px;
            background: #F3F3F3;
            border-color: #F3F3F3;
            color: #737373;
        }
    }
}
.nb-delivery-address-form-2 .first-email-wrapper .heading-wrapper .nb-link {
     font-size: 16px;
}
.nb-slider-item-box-43{
    .nb-text-wrapper{
        margin-left: 0;
        padding-left: 50px;
        max-width: 50%;
    }
}
.order-information-overview-2.block,
.nb-order-item-list-3.block{
    padding: 0;
    background-color: transparent;
}
.nb-order-item-box-3{
    border-bottom: 1px solid var(--nb-border-color);
}
.nb-order-total-amount-3 .nb-order-total-card-1-header, .nb-order-total-amount-3 .nb-order-total-card-1-footer{
    background-color: var(--nb-color-white);
}
/* Profile */
.nb-last-viewed-product-list-grid-1, .nb-back-in-stock-list-grid-1, .nb-price-drop-list-grid-1, .nb-user-address-form-1,
.nb-privacy-policy-consent-1, .nb-user-preference-product-attribute-3,
.nb-user-order-list-2,
.nb-user-favorite-product-list-grid-1,
.nb-edit-account-1,
.nb-user-account-dashboard-1{
    .nb-heading-with-subheading .nb-title{
        text-transform: uppercase;
    }
    .nb-btn-form{
        height: 54px;
        line-height: 52px;
        padding-block: 0;
        min-width: 360px;
    }
    .nb-remove-all-available-products .nb-btn{
        line-height: 33px;
        height: 35px;
        background: var(--nb-color-white);
        color: var(--nb-color-black);
        border-color: var(--nb-color-black);
        font-size: 14px;
        font-weight: 600;
        padding-block: 0;
        &:hover{
            background: var(--nb-color-black);
            color: var(--nb-color-white);
        }
    }
}
.nb-user-favorite-product-list-grid-1{
    .nb-remove-favorite{display: none;}
    .nb-product-favorite.active .nb-icon:before{
        content: "\ea1b";
        color: var(--nb-color-black);
        font-size: 25px;
    }
    .nb-favorite.nb-product-favorite{
        width: 20px; height: 20px;
    }
}
.nb-user-info-box-2 .nb-img{
    width: 46px;
    height: 46px;
}
.nb-user-menu-2 .nb-menu-item-box-2, .nb-user-menu-2 .nb-menu-item-box-2 .nb-link{
    line-height: 20px;
}
.nb-user-menu-2 .nb-user-menu-accordion:has(.nb-accordion-button:not(.collapsed)){
    background-color: var(--nb-color-white);
    border: 1px solid var(--nb-border-color);
}
.nb-user-menu-2{
    .accordion-button:not(.collapsed){
        background-color: transparent;
        border-bottom: 1px solid var(--nb-border-color);
    }
    .nb-user-menu-accordion .nb-accordion-header .nb-menu-item-box-2{
        background-color: transparent;
    }
    .nb-user-menu-accordion .nb-accordion-body .nb-menu-item-box-2{
        background-color: transparent;
        &.active,
        &:hover{
            background-color: var(--nb-color-gray-100);
            .nb-link{
                color: var(--nb-text-color-primary);
            }
        }
    }
    .nb-menu-item-box-2:hover{
        color: var(--nb-text-color-primary);
    }
    .nb-user-menu-accordion:has(.nb-accordion-button:not(.collapsed)), .accordion-flush .nb-user-menu-accordion:last-child:has(.nb-accordion-button:not(.collapsed)){
        border-bottom-color: var(--nb-border-color);
    }
    .nb-accordion .accordion-button .nb-toggle-icon{
        right: 10px;
    }
}
.nb-user-account-dashboard-1{
    --nb-custom-text-with-icon-1-text-font-size: 14px;

    .nb-card-7 .nb-card-header .nb-card-title,
    .nb-card-8 .nb-card-header .nb-card-title{
        text-transform: uppercase;
    }
    .nb-card-8 .nb-card-body .nb-points-wrapper{
        align-items: flex-end;
        > *:first-of-type{
            flex: unset;
        }
        .nb-display.nb-display-xs{
            height: 30px;
            font-weight: 600;
            color: var(--nb-color-gray-600);
        }

    }
}
.nb-user-address-form-1,
.nb-edit-account-1{
    max-width: 740px;
}
.nb-user-order-list-2{
    .nb-tab-link-3{
        padding: 0;
        font-size: 14px;
        font-weight: var(--nb-font-bold);
        border: none;
        background: transparent;

        &:hover,
        &.active{
            background: transparent;
            .nb-link{
                color: var(--nb-text-color-primary);
                text-decoration: underline;
                text-underline-offset: 5px;
                text-decoration-thickness: 2px;
            }
        }
    }
    .nb-tab-link-3 .nb-link-with-icon-1{
        justify-content: flex-start;
        .nb-icon{display: none}
    }
    .nb-card .nb-card-header{
        padding-block: 10px;
    }
    .nb-custom-text-with-icon-3 .nb-icon{
        display: none;
    }
    .nb-order-card-1 .nb-btn{
        height: 32px;
    }
    .nb-order-card-1:not(:has(.nb-html-editor)) .nb-order-pay{
        height: 32px;
        padding: 0;
    }
    .nb-order-link-list-1{
        min-height: 116px;
        justify-content: center;
    }
    .nb-order-dropdown{
        display: none;
    }

    .nb-tab-link-list-3 {
        .slider{opacity: 1;}
        .nb-slider-init{
            margin: 0;
            display: flex;
            gap: 40px;
            overflow-x: auto;
            height: 20px;
            > .nb-slider-item{
                white-space: nowrap;
            }
        }
    }
}
.nb-selectable-tag-1{
    padding-block: 7px;
}
.nb-product-back-in-stock-card-1, .nb-product-price-drop-card-1{
    .nb-product-name, .nb-product-name .nb-title{
        font-size: 16px;
    }
    .nb-remove{
        top: 15px; right: 15px;
        font-size: 15px;
    }
    .nb-card-body > .custom-text{
        font-size: 12px;
    }
    .nb-card.nb-product-card .card-body.nb-card-body.nb-product-card-body > * + *{
        margin-top: 5px;
    }
}
.nb-product-price-drop-card-1{
    .nb-price{
        font-size: 12px;
    }
    .nb-card-body > .custom-text{
        color: var(--nb-color-black);
    }
}
.nb-user-address-list-1,
.nb-user-address-form-1{
    .nb-title{
        font-size: 18px;
        line-height: 20px;
        text-transform: uppercase;
    }
}
/* Cookie */
.nb-cookie-consent-1{
    bottom: 0;
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out
}
.nb-cookie-consent-1.cookie-appear{
    transform: translateY(0);
}
.nb-cookie-consent-1 .container .nb-cookie-wrapper .nb-cookie-info-wrapper-top .nb-cookie-info-wrapper .nb-controls-wrapper{
    padding: 10px;
    border: 1px solid var(--nb-border-color);
    .nb-cookie-btn-wrapper{
        flex: 1;
        justify-content: space-between;
    }
    .nb-btn{
        height: 35px;
        line-height: 33px;
        padding-block: 0;
    }
    .nb-btn.nb-cookie-accept-everything-btn{
        background: var(--nb-color-black);
        color: var(--nb-color-white);
        border-color: var(--nb-color-black);
        &:hover{
            background: var(--nb-color-white);
            color: var(--nb-color-black);
        }
    }
    .nb-btn.nb-cookie-learn-more,
    .nb-btn.nb-cookie-agree-btn{
        background: var(--nb-color-white);
        color: var(--nb-color-black);
        border-color: var(--nb-color-black);
        &:hover{
            background: var(--nb-color-black);
            color: var(--nb-color-white);
        }
    }
}
/* Store locator */
.nb-product-stock-by-location-1{
    .nb-quantity-product .nb-quantity-arrows:first-of-type,.nb-quantity-product .nb-quantity-arrows:last-of-type{
        border-radius: 0;
        background-color: var(--nb-color-white);
    }
    .nb-quantity-product .nb-quantity-wrapper,
    .nb-product-size-list-2 > .nb-size-value, .nb-product-size-list-2 .nb-size-with-indicator{
        border-radius: 0;
    }
    .nb-product-box-7 .nb-reset-size-wrapper{
        margin-left: 0;
        >.nb-paragraph{
            font-size: 16px;
            text-decoration: underline;
        }
        >.nb-icon{
            display: none;
        }
    }
}
.nbtmp-work-in-progress-page-tmp-3{
    .embedded-google-map-1 .nb-map{
        min-height: 750px;
    }
    .nb-slider-item-box-43 {
        .nb-text-wrapper {
            max-width: 90%;
        }
    }
    .nb-slider-item-box-43 .nb-slider-item-description{
        font-size: 18px;
    }
    .nb-slider-item-box-43 .nb-slider-item-name{
        font-size: 42px;
    }
    .carousel-banner-30 .nb-slider-item-box-42.left .nb-slider-item-content{
        display: none;
    }
}
.layout:has(> .nb-vertical-navigation-accordion-1){
    padding-right: 50px;
}

@media screen and (min-width: 991px) {
    .nb-horizontal-navigation-6 {
        .wsmenu > .wsmenu-list > li > .navtext:hover{
            text-decoration-thickness: 2px;
        }
        .wsmenu>.wsmenu-list>li .wstliststy02 li.wstheading a{
            text-transform: uppercase;
        }
        .nb-slider-item-box-56 {
            .nb-title {
                font-size: 20px;
                line-height: 24px;
                font-weight: var(--nb-font-bold);
            }
            .nb-slider-item-link {
                font-size: 16px;
                font-weight: var(--nb-font-bold);
                text-decoration: underline;
            }
        }
        .wsmenu>.wsmenu-list>li .wstheading{
            border-bottom-color: var(--nb-color-black);
        }
    }

    body:not(.block-editing){
        &.nbtmp-product-listing-page-tmp-18 .layout:has(>.product-listing-options-3){
            position: sticky;
            top: 130px;
            background: var(--nb-color-white);
            z-index: 999;
            transition: top .5s ease-in-out;
            -webkit-transition: top .5s ease-in-out;
            -moz-transition: top .5s ease-in-out;
        }
        &.nbtmp-product-listing-page-tmp-18:has(header.nb-in-out-fixed-collapsed) .layout:has(>.product-listing-options-3){
            top: 20px;
        }
        &.nbtmp-product-listing-page-tmp-18 .layout:has(>.nb-product-filter-category-attribute-vertical-1){
            top: 200px;
            max-height: calc(100vh - 200px);
        }
        &.nbtmp-product-listing-page-tmp-18:has(header.nb-in-out-fixed-collapsed) .layout:has(>.nb-product-filter-category-attribute-vertical-1){
            top: 80px;
            max-height: calc(100vh - 80px);
        }
    }
}
.nb-country-selection-offcanvas-1 .nb-link-with-image-1 .nb-link:hover{
    text-decoration: underline;
}
.nb-change-password-form-page-1 .nb-btn{
    width: 100%;
    height: 54px;
}
.nb-newsletter-form-popup-5-block .nb-modal .modal-header{
    border-bottom-width: 1px;
}
.nb-payment-status-notice-1 .nb-alert-2 .nb-alert-2-content{
    font-size: 16px;
}

@media screen and (max-width: 1200px) {
    .layout:has(> .nb-vertical-navigation-accordion-1){
        padding-right: 10px;
    }
}
@media screen and (max-width: 1024px) {
    .nb-smart-search-3 {
        .search-content-wrapper .right-wrapper {
            padding: 0;
        }
    }
    .nb-product-add-to-cart-button-5 .nb-btn.nb-add-to-cart{
        font-size: 18px;
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 992px) {
    .nb-ecommerce-header-16 {
        .nb-header-wrapper,
        .nb-header-bottom-wrapper {
            padding-inline: 20px;
        }
    }
    .nb-single-banner-17 {
        & > .nb-content-wrapper {
            bottom: 50px;
            & .btn-wrapper {
                margin-top: 30px;
                .nb-btn {
                    height: 40px;
                    line-height: 38px;
                    min-width: 144px;
                }
            }
        }
    }
    .nb-custom-product-list-carousel-7 {
        .nb-product-list-link-button .nb-btn {
            font-size: 14px;
            line-height: 18px;
            margin-top: 20px;
            height: 40px;
        }
    }
    /* Search */
    .nb-smart-search-modal-4{
        padding: 0 20px;

        .nb-search-links-2 .title,
        .nb-search-suggestions-3 .title,
        .nb-search-suggestions-4 .title{
            font-size: 16px;
            font-weight: var(--nb-font-bold);
        }

        .menu-title-wrapper .nb-icon{
            font-size: 16px;
        }
    }
    .nb-horizontal-navigation-6{
        .nb-search-button{
            padding: 15px 0;
        }
        .wsmenu>.wsmenu-list>li>.navtext{
            font-size: 16px;
            padding: 21px 0;
            span{
                font-size: 16px;
            }
        }
        .wsmenu>.wsmenu-list>li>.wsmenu-click{
            height: 61px;
            >i{
                margin: 26px 5px 0px 0px;
            }
        }
        & .wsmenu-list:has(> li > .ws-activearrow) > li {
            &:has(.ws-activearrow) {
                >.wsmenu-click>i {
                    float: left;
                    transform: rotate(-225deg) rotateZ(90deg);
                    margin: 27px 5px 0px 10px;
                }
            }
        }
        & .wsmenu > .wsmenu-list > li .wstliststy02 li.wstheading a{
            font-size: 16px;
            font-weight: var(--nb-font-regular);
        }

        .nb-slider-carousel-4 .slick-track{
            margin-left: 0;
        }
        .wsmenu>.wsmenu-list{
            --nb-border-color: var(--nb-color-gray-200);
            padding-inline: 20px;
        }

    }
    .nb-header-user-links-3 .nb-user-login-link{
        background: var(--nb-color-white);
        border-color: var(--nb-color-black);
        color: var(--nb-color-black);
    }
    .nb-logged-user-wrapper .nb-user-info-wrapper .nb-link{
        font-size: 16px;
    }
    .nb-logged-user-wrapper .nb-user-info-wrapper + .nb-link{
        font-size: 16px;
        font-weight: 600;
    }
    .layout:has(>.nb-delivery-address-form-2){
        margin-top: 40px;
    }
    body.nbtmp-op-checkout-tmp-2 {
        .nb-container-1200:has(.nb-delivery-address-form-2) {
            padding-inline: 20px;
            margin-top: -15px !important;
        }
        .nb-cart-total-4{
            left: -20px;
            width: calc(100% + 40px);
            padding-inline: 20px;
        }
        & .nb-container-1200:has(.nb-delivery-address-form-2) {
            & > .row > .col-12:last-child {
                .nb-cart-product-items-4 {
                    margin-inline: -20px;
                    margin-top: -15px !important;
                }
            }
        }
        .nb-cart-product-item-9{
            padding-inline: 20px;
        }
    }
}

@media screen and (max-width: 768px) {
    .footer > .container-fluid{
        padding-inline: 20px;
    }
    .container,
    .container-fluid{
        padding-inline: 15px;
    }
    .nb-user-register-1{
        gap: 10px;
    }

    .nb-product-listing-options-3{
        border-inline: none;
    }

    .layout > .nb-product-filter-category-attribute-vertical-1{
        padding-top: 50px;
    }
    .nb-product-filter-category-attribute-vertical-1 .nb-mobile-title-wrapper:has(.nb-title){
        justify-content: flex-start;
        padding-left: 15px;
        border-color: var(--nb-color-gray-200);
        .nb-title{
            font-size: 16px;
        }
    }
    .layout > .nb-product-filter-category-attribute-vertical-1:has(.nb-mobile-title-wrapper .nb-title) .nb-filter-close{
        top: 7px;
        right: 5px;
    }
    .nb-slider-item-box-43{
        .nb-img-wrapper{
            padding-inline: 15px;
        }
        .nb-text-wrapper{
            padding: 15px;
            max-width: 100%;
        }
        .nb-link{
            width: unset;
        }
    }
    .nb-location-map-list-4 {
        .nb-locations-list-panel {
            top: 60px;
            left: 50%
        }
    }
    .nbtmp-work-in-progress-page-tmp-3 .embedded-google-map-1 .nb-map{
        min-height: 300px;
    }
    .nbtmp-home-page-tmp-26 main > .layout:first-child > .nb-single-banner-17 .nb-img-wrapper{
        aspect-ratio: 800 / 1356;
    }
}
@media screen and (max-width: 576px) {
    .nb-search-links-2 .menu-title-wrapper,
    .nb-search-suggestions-3 .menu-title-wrapper {
        border-color: var(--nb-color-gray-200);
    }

    .nb-product-load-more-2{
        margin-top: 20px;
    }
    .nb-product-gallery-carousel-2 .nb-slider-init:not(.slick-initialized) .nb-gallery-item .nb-img-wrapper::before{
        opacity: 0;
    }
    .nb-quick-purchase-modal-placeholder-1{
        --nb-product-add-to-cart-button-5-add-to-cart-btn-height-mobile: 60px;
        .nb-modal-body{
            padding-bottom: 80px;
        }
        .nb-product-detail-gallery-carousel-2{
            margin-inline: -20px;
            margin-top: -20px;
            margin-bottom: 20px;
        }
        .nb-product-add-to-cart-button-5{
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
        }
    }
    .nb-product-related-image-list-1 .nb-product-related-image-list-wrapper > * {
        flex: 0 0 calc(100% / 5 - 8px) !important;
    }
    .nb-product-detail-short-description-1 {
        font-size: 14px;
    }
    .nb-additional-product-info-displays-accordion-1 {
        .nb-accordion.nb-accordion-2 .nb-accordion-button {
            font-size: 14px;
            line-height: 20px;
            padding-block: 20px;
        }
    }
    .nb-product-add-to-cart-button-5 .nb-btn.nb-add-to-cart{
        font-size: 18px;
    }
    .nb-product-detail-gallery-carousel-3{
        .nb-gallery-zoom .nb-img-wrapper::before, .nb-gallery-item .nb-img-wrapper::before{
            opacity: 1;
            bottom: 20px;
            right: 20px;
        }
        .nb-slider-dots,
        .nb-slider-dots.nb-indicators-bottom-right{
            position: relative;
            bottom: unset;
            right: unset;
            margin-bottom: 20px;

            .slick-dots > li{
                width: 20px;
                height: 2px;
                background-color: var(--nb-color-gray-200);

                &.slick-active{
                    background-color: var(--nb-color-black);
                }

                & + li{
                    margin-left: 10px;
                }
            }
        }
    }
    .layout:has(.layout > .product-detail-gallery-carousel-3){
        margin-top: 20px;
    }
    .nbtmp-landing-page-tmp-30 .layout:first-child,
    .layout:first-child:has(h1),
    .layout:first-child:has(.layout .contact-form-1, .layout .vertical-navigation-accordion-1){
        margin-top: 40px;
    }
    .nbtmp-article-detail-tmp-18 .layout:has(.nb-article-detail-heading-2){
        margin-bottom: 40px;
    }
    .block.contact-form-1 .nb-form .nb-btn{
        min-width: unset;
        width: 100%;
    }
    .nbtmp-product-detail-page-tmp-22 .nb-product-detail-name-2 .nb-product-name-with-add-to-favourites .nb-product-detail-product-name.nb-title{
        font-size: 18px;
    }
    .nbtmp-regular-page-tmp-9 .container > .row > *:first-child .nb-heading-1,
    .nbtmp-basic-contact-form-page-tmp-11 .container > .row > *:first-child .nb-heading-1{
        border-top: none;
        padding-top: 0;
    }
    .layout:has(> .nb-article-list-search-bar-2){
        margin-top: 40px;
        margin-bottom: 40px;
    }
    .nb-location-image-1 .left-wrapper {
        padding: 20px;
        .nb-location-name .nb-title{
            font-size: 36px;
            line-height: 38px;
        }
    }
    .layout:has(.location-address-5,.store-content){
        margin-top: 20px !important;
    }
    /* Profile */
    .nb-edit-account-1{
        .nb-btn-form{
            height: 54px;
            line-height: 52px;
            padding-block: 0;
            min-width: 100%;
        }

    }
    .nb-user-menu-2 .nb-mobile-wrapper .nb-wrapper{
        padding-inline: 0;
    }
    .nb-article-list-grid-6{
        --nb-gutter-y: 35px;
    }
    .nb-quick-purchase-modal-placeholder-1 .nb-product-detail-name-2 .nb-favorite {left: 0;}
    .nbtmp-landing-page-tmp-31 .nb-single-banner-14 .nb-btn {
        display: block;
        width: fit-content;
        margin: auto;
    }
    .nb-user-order-list-2  .nb-order-link-list-1 {
        min-height: unset;
    }
    .nb-ecommerce-footer-20 .nb-footer-payment-cards {
        .nb-img {
            max-height: 25px;
        }
    }
}
