/*@import "./shop-basket.css";*/
/*@import "./shop-top.css";*/
/*@import "./shop-user.css";*/
/*@import "./shop-variant.css";*/
/*@import "./shop-store.css";*/
/*@import "./shop-configurator.css";*/

:root {
    --shop-primaryHover: var(--color-secondary);
    --shop-primary: var(--color-primary);
    --shop-primaryText: #fff;
    --shop-secondary: var(--color-secondary);
    --shop-secondaryText: #868686;
    --shop-default: var(--color-default);

    --shop-radius-default: 6px;
}

/**  TOP BASKET **/

.top-box-product-image img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0);
    -moz-transform: translate3d(-50%, -50%, 0);
    -ms-transform: translate3d(-50%, -50%, 0);
    -o-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
    max-width: 90%;
    max-height: 90%;
}

.top-box-product-image a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.top-box-product-image .badge {
    position: absolute;
    z-index: 200;
    bottom: 2px;
    right: 2px;
    background: var(--shop-primary);
    color: var(--shop-primaryText);
    font-weight: normal;
}

.top-box-product-image {
    width: 80px;
    height: 80px;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.top-box-product .top-box-right .product-name {
    font-size: 16px;
    font-weight: bold;
    color: var(--shop-primary);
    transition: color 0.3s;
}

.top-box-product .top-box-right .product-name:hover {
    color: #000;
}

.top-box .top-box-btn .btn {
    width: 100%;
}

.top-box .top-box-product + .top-box-product,
.modal .top-box-product + .top-box-product {
    padding-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.top-box-product {
    padding-bottom: 10px;
}

.top-box-product .top-box-right {
    overflow: hidden;
    padding-left: 10px;
}

.top-box-product .top-box-bottom > .price-box {
    float: right;
    width: 50%;
    text-align: right;
}

.top-box-product .retail-price {
    float: left;
    width: 50%;
    text-align: left;
}

.top-box-bottom .price.shop-product-price-gross {
    font-size: 14px;
    font-weight: bold;
    color: var(--shop-primary);
}

.top-box-bottom .price.price-old {
    font-size: 12px;
    font-weight: light;
    text-decoration: line-through;
}

.top-box-bottom .caption {
    font-size: 12px;
}

.top-box-product .top-box-bottom {
    width: 100%;
    padding-top: 5px;
}

.top-box-product .top-box-left {
    float: left;
}

.shop-mini-basket .summary {
    padding: 5px 0 10px;
    overflow: hidden;
}

.shop-mini-basket .summary-left {
    float: left;
    font-size: 12px;
    padding-top: 5px;
}

.shop-mini-basket .summary-right {
    float: right;
    font-size: 16px;
    font-weight: bold;
    color: var(--shop-primary);
}

.top-box-product .top-box-total .caption {
    font-size: 12px;
    font-weight: 300;
}

.shop-mini-basket .tinyscrollbar {
    position: relative;
}

.mini-basket-box .tinyscrollbar .viewport {
    position: relative;
    max-height: 300px;
    overflow: auto;
    scrollbar-width: thin;
    padding-right: 10px;
}

.mini-basket-box .tinyscrollbar .viewport .overview {
    position: relative;
    width: 100%;
}

.mini-basket-box .tinyscrollbar .scrollbar.disable {
    display: none;
}

.mini-basket-box .tinyscrollbar .scrollbar {
    position: absolute;
    top: 0;
    right: -10px;
}

.mini-basket-box .tinyscrollbar .scrollbar .track {
    position: relative;
    width: 1px;
    background: var(--shop-secondary);
}

.mini-basket-box .tinyscrollbar .scrollbar .track .thumb {
    background: var(--shop-primary);
    margin: 0 -1px;
    width: 3px;
    position: absolute;
}

/** Basket page **/
.basket-coupon-box .form-inline .input-group .input-group-btn {
    width: 1%;
}

.basket-coupon-box .form-inline .input-group .input-group-btn .btn {
    height: 46px;
    margin-left: 0;
}

.container.container-basket {
    max-width: 1300px;
}

.basket-heading-inner {
    padding: 30px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.basket-heading-title {
    /*font-weight: 700;*/
    /*font-size: 32px;*/
    padding-right: 30px;
    flex-shrink: 0;
    font-size: calc(var(--font-36) + 4px);
    font-weight: 400;
    font-family: "Noto Serif", 'serif';
}

.step-list {
    text-align: right;
    display: flex;
    align-items: center;
}

.step-list .step {
    display: inline-block;
    vertical-align: middle;
    width: auto;
    min-width: 140px;
    padding: 5px;
    white-space: normal;
}

.step-list .step .step-inner a {
    background: transparent;
    padding: 0 5px;
    line-height: 20px;
    letter-spacing: 0.05em;
    text-decoration: none;
    text-align: center;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    font-size: 16px;
    font-weight: 300;
    color: #000;
    display: flex;
    align-items: center;
}

.step-list .step .active .nb {
    color: var(--shop-primaryText);
    background-color: var(--shop-primary);
}

.step-list .step .nb {
    margin-right: 10px;
    border-radius: 50%;
    background-color: transparent;
    width: 34px;
    height: 34px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.05em;
    line-height: 32px;
    color: var(--shop-primary);
    border: 1px solid var(--shop-primary);
    flex-shrink: 0;
    text-align: center;
}

.basket-table th .caption {
    width: 100%;
}

.basket-table {
    width: 100%;
    border-spacing: 0;
    border-collapse: collapse;
}

.basket-table th.quantity {
    width: 200px;
}

.basket-table td.product-info-box {
    width: 320px;
    padding-right: 25px;
    text-align: left;
}

.basket-table td.product-image {
    width: 100px;
    padding-left: 0;
    padding-right: 20px;
    vertical-align: top;
}

.basket-table td.lp {
    width: 40px;
}

.basket-table .name a.title, .basket-table tbody .lp, .basket-table .price:not(.price-old) {
    margin-left: 0 !important;
    font-size: 16px;
}

.basket-table .price:not(.price-old), .basket-table tbody .lp {
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0;
    font-weight: 900;
}

.basket-table thead tr > *,
.basket-table tbody tr > * {
    border: 1px solid #e5e5e5;
}

.basket-table thead tr:first-child > * {
    border-top: none;
}

.basket-table tbody tr:last-child > * {
    border-bottom: none;
}

.basket-table thead tr > *:first-child,
.basket-table tbody tr > *:first-child {
    border-left: none;
}

.basket-table thead tr > *:last-child,
.basket-table tbody tr > *:last-child {
    border-right: none;
}

.basket-table .image {
    margin: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.basket-table .image a img {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 100%;
    max-height: 100%;
    -webkit-transform: translate3d(-50%, -50%, 0);
    -moz-transform: translate3d(-50%, -50%, 0);
    -ms-transform: translate3d(-50%, -50%, 0);
    -o-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
}

.basket-table .image a {
    width: 80px;
    height: 80px;
    border: none;
    margin: 0 auto;
    background: transparent;
    position: relative;
    z-index: 20;
}

.shop-quantity-box .qty-down, .shop-quantity-box .qty-up {
    position: absolute;
    top: 12px;
    font-size: 16px;
    background: #fff;
    text-align: center;
    border-radius: 0;
    cursor: pointer;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    height: 46px;
    width: 46px;
    line-height: 44px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #000;
}

.shop-quantity-box input.input-qty {
    padding-top: 5px;
    padding-bottom: 5px;
    height: 46px;
    text-align: center;
    line-height: 28px;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    color: #000;
    max-width: 178px;
}


.shop-quantity-box .qty-down {
    left: 0;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.shop-quantity-box .qty-up {
    right: 0;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.input-counter,
.basket-table .input-counter {
    display: inline-block;
    padding: 12px 0;
    position: relative;
    vertical-align: middle;
}

.basket-table .orderItemsValue {
    float: right;
    font-weight: 300;
    font-size: 14px;
    padding-top: 5px;
    margin-bottom: 20px;
}

.price-and-discount-container tfoot .shop-basket-price,
.orderItemsValue span {
    text-transform: none;
    font-size: 24px;
    font-weight: 700;
    color: var(--shop-primary);
}

.product-nav-slider .product-slide-inside {
    cursor: pointer;
}

.basket-view .summary-box .form-element-name, .basket-view .summary-box h3, .filter-grid h2 {
    margin: 0;
    width: 100%;
    padding: 12px 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.basket-view .summary-box .form-element-name.flex {
    display: inline-flex;
    justify-content: space-between;
}

.basket-view .basket-summary {
    margin: 0 0 25px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #fff;
    padding: 0;
}

.basket-view .summary-box .form-element-name h3 {
    width: auto;
    display: inline-block;
    border: 0;
    padding: 5px 0;
}

.basket-view .summary-box .form-element-name .correct-link {
    font-size: 0;
}

.basket-view .summary-box .form-element-name .correct-link:hover .btn {
    background-color: #fff;
    color: var(--color-default);
}

.basket-summary .form-element-select, .basket-summary .form-element.form-element-radio, .basket-summary .price-and-discount-container {
    padding: 15px;
}

.basket-view .delivery-methods label .iradio_minimal-custom {
    margin-right: 5px;
}

.basket-view .form .summary-box .checkboxradio-container label {
    margin-bottom: 15px;
    line-height: 18px;
    font-size: 15px;
    color: #000;
    display: flex;
}

.basket-view .form .summary-box .checkboxradio-container label .form-element-option-text {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
}

.basket-table thead tr > * {
    text-align: center;
}

.order-history-view .panel-heading h3,
.order-history-view .form-element-name,
.basket-view .basket-summary-right h3,
.form *[class*="form-element-collection"] > .form-element-name,
.form *[class*="form-element-collection"] > .form-element-label-wrapper > .form-element-name,
.basket-table thead tr > *,
.panel-default > .panel-heading h2 {
    padding: 10px 15px;
}

.panel-default > .panel-heading {
    padding: 0;
}

.basket-table thead tr > * {
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    text-transform: uppercase;
    color: #000;
    background: #EEE;
}

.order-history-view .panel-heading h3,
.order-history-view .form-element-name,
.basket-view .basket-summary-right h3,
.form *[class*="form-element-collection"] > .form-element-name,
.form *[class*="form-element-collection"] > .form-element-label-wrapper > .form-element-name,
.panel-default > .panel-heading h2,
.order-history-view .form-element-name,
.basket-view .summary-box .form-element-name,
.basket-view .summary-box h3,
.filter-grid h2,
.order-history-container .table.table-crud thead th {
    font-size: 16px;
    text-transform: uppercase;
    line-height: 26px;
    width: 100%;
    font-weight: 600;
    color: #000;
    background: #EEE;
    margin: 0;
    border-radius: var(--shop-radius-default) var(--shop-radius-default) 0 0;
}

.order-history-view .panel-heading h3,
.filter-grid h2,
.form *[class*="form-element-collection"] > .form-element-name,
.form *[class*="form-element-collection"] > .form-element-label-wrapper > .form-element-name,
.sidebar-sides .userpanel-container .login-box .panel-heading,
.sidebar-sides .userpanel-container .login-box .panel-heading .title-base {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 16px;
}

.order-history-container .table.table-crud thead th {
    font-size: 14px;
}

.order-history-view .panel-heading h3 .form-required-mark,
.order-history-view .form-element-name .form-required-mark,
.basket-view .basket-summary-right h3 .form-required-mark,
.form *[class*="form-element-collection"] > .form-element-name .form-required-mark,
.form *[class*="form-element-collection"] > .form-element-label-wrapper > .form-element-name .form-required-mark,
.panel-default > .panel-heading h2 .form-required-mark,
.order-history-view .form-element-name .form-required-mark,
.form *[class*="form-element-collection"] > .form-element-label-wrapper > .form-element-name .form-required-mark,
.form *[class*="form-element-collection"] > .form-element-name .form-required-mark,
.basket-view .summary-box .form-element-name .form-required-mark,
.basket-view .summary-box h3 .form-required-mark,
.filter-grid h2 .form-required-mark {
    margin-left: 0.2em;
    color: inherit;
}

.sidebar-sides .table > tbody > tr > td,
.sidebar-sides .table > tbody > tr > th,
.sidebar-sides .table > tfoot > tr > td,
.sidebar-sides .table > tfoot > tr > th,
.sidebar-sides .table > thead > tr > td,
.sidebar-sides .table > thead > tr > th {
    padding: 10px 15px;
    font-size: 14px;
}

.form *[class*="form-element-collection"] > .form-element-name {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-width: 1px 1px 0 1px;
    border-radius: var(--shop-radius-default) var(--shop-radius-default) 0 0;
}

.form *[class*="form-element-collection"] > .form-element-name + .form-element .panel {
    border-radius: 0 0 var(--shop-radius-default) var(--shop-radius-default);
}

.panel-radius.panel-radius {
    border-radius: var(--shop-radius-default);
}

.panel-border {
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.panel-border table tr th:first-child,
.panel-border table tr td:first-child {
    border-left: none !important;
}

.panel-border table tr th:last-child,
.panel-border table tr td:last-child {
    border-right: none !important;
}

.panel-border.overflow-hidden {
    overflow: hidden;
}

.filter-grid h2 {
    display: none;
}

.sidebar-sides .grid-counter {
    line-height: 26px;
    font-size: 12px;
}

.panel {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.form-group-quantity {
    position: relative;
    margin: 0;
}

.basket-table td {
    position: relative;
    padding: 8px 6px;
    vertical-align: middle;
}

.basket-table td.product-image {
    width: 90px;
    padding-left: 0;
    padding-right: 10px;
    vertical-align: top;
}

.shop-update-basket {
    padding: 0 5px;
}

.basket-table .product-image, .basket-table .product-info-box {
    border-left: none;
}

.basket-table th.lp, .basket-table tbody .lp, .basket-table .product-image {
    border-right: none;
}

.basket-table .product-name a {
    font-size: 16px;
    font-weight: bold;
    color: #000;
    transition: color 0.3s;
}

.basket-table .product-name a:hover {
    color: var(--color-primary);
}

.product-name .product-code {
    font-weight: normal;
    font-size: 11px;
    color: #888;
}

.price.price-old {
    font-size: 12px;
    font-weight: 300;
    text-decoration: line-through;
}

.basket-table th, .basket-table td {
    border: none;
    text-align: center;
}

.basket-table tbody tr:nth-child(even) {
    background-color: #fdfdfd;
}

.basket-table .remove-column {
    width: 91px;
}

.basket-table td:last-child .btn:after,
.basket-table td:last-child .btn:before {
    width: 1px;
    background-color: #808080;
}

.basket-coupon label {
    padding-bottom: 5px;
    font-size: 16px;
    font-weight: bold;
    color: var(--shop-primary);
}

.basket-coupon .input-group {
    width: 100%;
}

.basket-coupon {
    padding: 0;
    margin: 20px 0;
    background-color: #f9f9f9;
}

.basket-coupon-text {
    margin-bottom: 5px;
}

.basket-coupon-text.text {
    font-size: 14px;
}

.basket-coupon-col:first-child:last-child {
    float: none;
    width: auto;
    max-width: 520px;
    margin: 0 auto;
    padding: 20px;
}

.basket-coupon-activated .basket-coupon-col {
    text-align: center;
}

.basket-coupon-activated .basket-coupon-col .input-group > * {
    vertical-align: middle;
}


.shop-method-teaser {
    display: inline-block;
    font-size: 12px;
}

.shop-method-icon {
    margin-right: 5px;
}

.shop-basket-summary .checkboxradio-container {
    padding-right: 0;
}


.shop-method-icon img {
    display: block;
    max-width: 100%;
}

.shop-method-disable-reason {
    display: block;
    color: darkred;
    font-size: 12px;
    width: 100%;
}

.shop-product-variant-name {
    font-size: 12px;
}

@media screen and (min-width: 1140px) {
    .shop-quantity-box .qty-down:hover,
    .shop-quantity-box .qty-up:hover {
        background: var(--shop-primary);
        color: #fff;
    }

    .basket-table td:last-child .btn:before {
        display: block;
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        margin-top: -8px;
        margin-left: -1px;
        width: 2px;
        height: 16px;
        background: #fff;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
        -webkit-transition: background 0.4s;
        -moz-transition: background 0.4s;
        -ms-transition: background 0.4s;
        -o-transition: background 0.4s;
        transition: background 0.4s;
    }

    .basket-table td:last-child .btn:after {
        display: block;
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        margin-top: -8px;
        margin-left: -1px;
        width: 2px;
        height: 16px;
        background: #fff;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
        -webkit-transition: background 0.4s;
        -moz-transition: background 0.4s;
        -ms-transition: background 0.4s;
        -o-transition: background 0.4s;
        transition: background 0.4s;
    }

    .basket-table td:last-child .btn {
        display: inline-block;
        max-width: 100%;
        white-space: normal;
        padding: 0;
        width: 32px;
        height: 32px;
        border-radius: var(--shop-radius-default);
        position: relative;
        background-color: #dc3545;
        border-color: #dc3545;
        transition: background-color 0.4s;
    }

    .basket-table td:last-child .btn::before,
    .basket-table td:last-child .btn::after {
        background-color: #fff;
        transition: background-color 0.4s;
    }

    .basket-table td:last-child .btn:hover {
        background-color: #fff;
    }

    .basket-table td:last-child .btn:hover::before,
    .basket-table td:last-child .btn:hover::after {
        background-color: #dc3545;
    }

    .only-mobile {
        display: none !important;
    }
}

/** STEP 2 **/

.shop-order-login .match-inner .text,
.shop-order-login .panel-body .match,
.shop-order-login .panel-body {
    height: 100%;
}

.shop-order-login .match-inner,
.shop-order-login .panel {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.shop-order-login .row > * {
    margin-bottom: 15px;
}

.shop-order-login .row {
    display: flex;
}

.shop-order-login .match-inner .text {
    padding-bottom: 10px;
}

.btn-container {
    padding: 30px 0 20px;
}

.forgot-password {
    font-size: 14px;
    margin-bottom: 10px;
}

/** STEP 3 **/
.collection-row-wrapper .form-elements .form-element-container {
    padding-bottom: 15px;
}

.form-with-fixed {
    overflow: hidden;
    position: relative;
}

.form-with-fixed .fixed-right.affix-bottom {
    position: absolute;
    bottom: 0;
}

.basket-view .form-wrapper {
    width: 60%;
    float: left;
}

.basket-view .right-column {
    width: 40%;
    float: right;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 32px;
    width: 30px;
}

.select2-container .select2-selection--single {
    height: 34px;
}

.form-group-lg .form-element.has-feedback .select2-container--default .select2-selection--single .select2-selection__arrow {
    right: 0;
}

.form-with-fixed .right-column {
    position: absolute;
    top: -10px;
    right: 0;
    bottom: 10px;
}

.form-with-fixed .fixed-right.affix-top {
    position: absolute;
    top: 0;
}

.form-with-fixed .fixed-right {
    padding-top: 10px;
    padding-bottom: 10px;
    width: 100%;
    pointer-events: none;
}

.basket-view .fixed-right {
    padding-left: 15px;
}

.basket-summary .top-box-product {
    padding-left: 15px;
    padding-right: 15px;
}

.basket-summary-right .summary-box .top-box-product {
    border-top: none;
}

.summary-box .tinyscrollbar .viewport .overview {
    position: relative;
    width: 100%;
}

.form-with-fixed .fixed-right .basket-summary {
    margin-bottom: 0;
    pointer-events: all;
}

.summary-box .table {
    margin: 0;
}

.summary-box .tinyscrollbar .viewport {
    position: relative;
    max-height: 290px;
    overflow: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--color-primary);
    padding-right: 10px;
}

.summary-box .tinyscrollbar .scrollbar {
    position: absolute;
    top: 0;
    right: 6px;
}

.summary-box .tinyscrollbar .scrollbar .track {
    position: relative;
    width: 1px;
    background: rgba(0, 0, 0, 0.1);
}

.summary-box .tinyscrollbar .scrollbar .track .thumb {
    background: var(--shop-primary);
    margin: 0 -1px;
    width: 3px;
    position: absolute;
}

.summary-box .tinyscrollbar {
    position: relative;
    margin-top: 16px;
}

.select2-container--default .select2-selection--single {
    border: 1px solid #ccc;
}

.delivery-address-fieldset-borderless {
    margin-bottom: 0;
}

.delivery-address-fieldset-borderless > .form-element-container > .form-element > .element-row > .row > .collection-body > .collection-row-wrapper > .panel {
    border: none;
}

.delivery-address-fieldset-borderless > .form-element-container > .form-element > .element-row > .row > .collection-body > .collection-row-wrapper > .panel > .panel-body {
    padding: 0;
}

/** step 4 **/
.order-summary-items h2 {
    display: none;
}

.order-summary-items {
    margin-bottom: 25px;
}

.summary-box .table > tbody > tr:first-child > td,
.summary-box .table > tbody > tr:first-child > th {
    border-top: 0;
}

.order-summary-data .summary-box .table > tbody > tr > td,
.order-summary-data .summary-box .table > tbody > tr > th {
    padding-left: 15px;
    padding-right: 15px;
}

/** modal **/
.alert .message-icon {
    padding-right: 5px;
}

.alert-success .message-icon:before {
    content: "\f00c";
    font: normal normal normal 14px/1 FontAwesome;
}

.alert-error .message-icon:before {
    content: "\f071";
    font: normal normal normal 14px/1 FontAwesome;
}

.alert-warning .message-icon:before {
    content: "\f071";
    font: normal normal normal 14px/1 FontAwesome;
}

.alert-info .message-icon:before {
    content: "\f129";
    font: normal normal normal 14px/1 FontAwesome;
}

.modal-content {
    overflow: hidden;
}

.modal-header {
    font-weight: 700;
    background: var(--shop-primary);
    color: var(--shop-primaryText);
}

.modal-header .close {
    opacity: 1;
    color: var(--color-primary);
    text-shadow: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid #fff;
    transition: all 0.3s;
    margin-top: -15px !important;
}

.modal-header .close:hover {
    color: #fff;
    background-color: var(--color-primary);
    opacity: 1;
}


.payment-methods .col-xs-4 {
    width: 100%;
}

.summary-box .form-required-mark {
    margin-left: 0.2em;
    color: var(--shop-primaryText);
}

.summary-box .form-required-mark {
    display: none;
}

.delivery-methods .checkboxradio-container .form-control-feedback,
.payment-methods .checkboxradio-container .form-control-feedback {
    display: none;
}

.delivery-methods .checkboxradio-container.has-feedback,
.payment-methods .checkboxradio-container.has-feedback {
    padding-right: 0;
}

.form .delivery-methods .has-feedback .checkboxradio-container,
.form .payment-methods .has-feedback .checkboxradio-container {
    padding-right: 0;
}

.progressbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 1px;
    height: 4px;
    background-color: var(--shop-primaryHover);
    z-index: 200000000;
}

.basket-coupon .form-control-feedback {
    display: none;
}

.basket-coupon-code {
    display: inline-block;
    margin-right: 10px;
}

.price-and-discount-container tfoot .shop-basket-price {
    white-space: nowrap;
}

.order-form .fixed-offset,
.basket-view-bottom {
    margin-bottom: 20px;
}

.order-history-view td,
.order-summary-data .basket-summary .table td {
    word-break: break-word;
}

.payment-content {
    margin: var(--space-50) 0;
}

.payment-content .text {
    font-weight: 700;
}

.btn.btn-pay {
    padding: 16px 25px;
    font-size: 16px;
    border: 3px solid #ff0000;
    background-color: #fff;
    color: #ff0000;
    transition: border-color 0.4s;
}

.btn.btn-pay img {
    margin: 0 10px;
    height: 2.4em;
    width: auto;
}

.btn.btn-pay > * {
    display: inline;
    vertical-align: middle;
}

@media screen and (min-width: 1140px) {
    .btn.btn-pay:hover {
        border-color: #000;
    }
}

.inPost-element.form-group .input-group-btn {
    vertical-align: bottom;
}

.form-element-name .correct-link .btn-sm {
    min-width: unset;
    width: 34px;
    height: 34px;
}

.summary-box-borderless .form-element-name.flex {
    border-bottom: none;
}

.summary-box .summary-panel-data {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-top: 0;
    border-radius: 0 0 var(--shop-radius-default) var(--shop-radius-default);
    margin-bottom: 25px;
    padding: 15px;
}

.summary-box .summary-panel-data .email-value-wrapper {
    max-width: 85%;
    display: inline-block;
    word-wrap: break-word;
    vertical-align: top;
}

.order-form .input-group-btn .inPost-MachineSelect,
.inPost-element input {
    height: 46px;
}

.easypack-widget .search-group {
    margin: 0;
}

/** Search dropdown **/

.search-form .search-product-label {
    width: calc(100% - 42px);
    display: block;
    font-size: 12px;
    line-height: 16px;
}

.search-form .search-product-label:not(:first-child) {
    padding-left: 10px;
}

.search-form .search-product-img-contener {
    width: 42px;
    height: 42px;
    display: block;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.search-form .ui-state-active,
.search-form .ui-widget-content .ui-state-active,
.search-form .ui-menu-item-wrapper {
    width: 100%;
    white-space: normal;
    display: flex;
    align-items: center;
    padding: 2px 5px;
    background: #fff;
    color: #000;
}

.search-form .ui-state-active,
.search-form .ui-widget-content .ui-state-active,
.search-form .ui-widget-header .ui-state-active,
.search-form a.ui-button:active,
.search-form .ui-button:active,
.search-form .ui-button.ui-state-active:hover {
    border: 0;
    padding: 2px 5px;
    margin: 0;
}

.search-form .dropdown-menu {
    z-index: 10000;
    width: 270px;
    padding-bottom: 0;
}

.search-form .all-search-results a {
    margin-top: 5px;
    background: var(--shop-primary);
    color: var(--shop-primaryText);
    font-size: 12px;
    padding: 5px 15px;
}


.mainsearch .ui-widget {
    font-family: inherit;
}

.mainsearch .dropdown-menu {
    top: calc(100% + 10px);
    left: 0 !important;
    right: 0 !important;
    width: auto;
    padding: 10px;
    margin: 0;
    overflow-y: auto;
    overflow-x: hidden;
    border-radius: 0;
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    max-height: calc(100vh - 150px);
    background: #ececec;
}

.mainsearch .dropdown-menu .dropdown-search-li.category,
.mainsearch .ui-menu .ui-menu-item-wrapper {
    padding: 8px 12px;
}

.mainsearch .dropdown-menu .dropdown-search-li:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mainsearch .dropdown-menu > li {
    background: #fff;
}

.mainsearch .ui-menu .ui-menu-item-wrapper {
    display: block;
    font-weight: inherit;
    color: inherit;
}

.mainsearch .ui-menu > li > * {
    margin: 0;
    transition: all 0s;
}

.mainsearch .dropdown-menu .dropdown-search-li.group {
    pointer-events: none;
}

.mainsearch .dropdown-menu .dropdown-search-li.group span,
.mainsearch .dropdown-menu .dropdown-search-li.category {
    min-height: 42px;
    display: flex;
    align-items: center;
    font-size: 16px;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-weight: 700;
    color: #fff;
    background-color: var(--shop-primaryHover);
}

.mainsearch .dropdown-menu .dropdown-search-li.category:hover {
    background-color: var(--shop-primary);
}

.mainsearch .dropdown-menu .dropdown-search-li.all-search-results,
.mainsearch .dropdown-menu .dropdown-search-li.category:not(:first-child) {
    margin-top: 10px;
}

.mainsearch .dropdown-menu .dropdown-search-li.all-search-results a {
    padding: 11px 15px;
    color: #fff;
    background-color: #000;
    border: none;
    text-align: center;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.mainsearch .dropdown-menu .dropdown-search-li.all-search-results a .fa {
    margin-top: -3px;
    font-size: 15px;
    margin-left: 10px;
}

.mainsearch .dropdown-menu .ui-menu-item-wrapper > * {
    display: inline-block;
    vertical-align: middle;
}

.mainsearch .dropdown-menu .search-product-img-contener {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 0;
    text-align: center;
}

.mainsearch .dropdown-menu .search-product-img-contener > svg {
    fill: #000;
    stroke: #000;
}

.mainsearch .dropdown-menu .ui-menu-item-wrapper:hover .search-product-img-contener svg {
    fill: #fff;
    stroke: #fff;
}

.mainsearch .dropdown-menu .search-product-img-contener img {
    max-width: 50px;
    max-height: 50px;
    vertical-align: middle;
}

.mainsearch .dropdown-menu .search-product-img-contener ~ .search-product-label {
    width: calc(100% - 50px);
    padding-left: 15px;
}

.mainsearch .dropdown-menu .search-product-label {
    white-space: normal;
}

.search-product-main-cat {
    display: block;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.5);
}

.mainsearch .dropdown-menu .ui-state-active {
    color: #fff;
    border: none !important;
    background-color: var(--shop-primary);
}

.mainsearch .dropdown-menu .all-search-results.ui-state-active,
.mainsearch .dropdown-menu .all-search-results .ui-state-active {
    background-color: var(--shop-primary) !important;
    border-color: var(--shop-primary) !important;
}

.mainsearch .dropdown-menu .ui-menu-item-wrapper > a {
    display: block;
}

.mainsearch .dropdown-menu .ui-menu-item-wrapper > a > * {
    display: inline-block;
    vertical-align: middle;
}

.mainsearch .dropdown-menu > li.no-results {
    padding: 10px;
    background: #ececec;
    cursor: unset;
    pointer-events: none;
}

.top-box-heading {
    font-size: 20px;
    font-weight: bold;
    color: var(--shop-primary);
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.top-box-container {
    position: relative;
}

.top-box {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    z-index: 10;
    background: #fff;
    top: calc(100% + 33px);
    right: -1px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 15px 20px;
    width: 340px;
    font-size: medium;
    box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.16);
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.header-top-right .user-nav .top-box {
    top: calc(100% + 40px);
}

@media screen and (min-width: 1140px) {
    .top-box-container.hovered .top-box {
        opacity: 1;
        pointer-events: all;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
    }

    .forgot-password a:hover {
        color: var(--shop-primary);
    }
}

.top-box-submenu.top-box {
    padding: 0;
    width: 250px;
}

.top-box-logout {
    padding: 15px;
}

.panel-page {
    padding-bottom: 30px;
    padding-top: 30px;
}

.sidebar-sides .panel-page {
    padding-top: 0;
}

.top-box-submenu-list li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    border-left: 0;
}

.top-box-submenu-list li {
    display: block;
    width: 100%;
}

.top-box-submenu-list li.active a {
    background: var(--shop-primaryHover);
    color: var(--shop-primaryText);
}

.top-box-submenu .user-nav-item-logout,
.top-box-submenu-list a {
    display: block;
    padding: 10px 15px;
    width: 100%;
    color: var(--shop-primary);
    background: var(--shop-primaryText);
}

.user-nav-item-logout {
    width: 100%;
    border-radius: 0;
}

.forgot-password a {
    padding: 0;
    display: inline-block;
    color: inherit;
    font-size: inherit;
    text-decoration: underline;
}

.top-box-buttons .btn + .btn {
    margin-top: 10px;
}

.top-box-buttons .btn {
    width: 100%;
    font-size: 16px;
    padding: 5px 20px;
}

/** top basket **/

.top-box-basket-container {
    float: right;
}

.basket-box-btn {
    display: flex;
    align-items: center;
    border-radius: 0;
    transition: all 0.4s;
    font-size: 16px;
    color: #000;
}

.basket-box-btn i {
    margin-left: calc(var(--space-25) + 5px);
    color: rgba(0, 0, 0, 0.2);
    transition: color 0.3s;
    font-weight: 700;
    font-size: 18px;
}

.basket-icon {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    border-radius: 0;
    transition: all 0.4s;
}

.basket-icon .icon {
    display: flex;
}

.basket-box-btn .caption-count {
    position: absolute;
    padding: 2px 3px;
    min-width: 20px;
    height: 20px;
    line-height: 16px;
    font-size: 9px;
    top: -11px;
    right: -11px;
    background: #582BB9;
    color: #fff;
    font-weight: 700;
}

.basket-box-btn .caption {
    display: block;
    padding-left: var(--space-25);
    font-size: 14px;
    color: #000;
    /*display: none;*/
}

.basket-box-btn .price {
    font-weight: 700;
}


@media screen and (min-width: 1140px) {
    .top-box-submenu .user-nav-item-logout:hover,
    .top-box-submenu li a:hover {
        background: var(--shop-primary);
        color: var(--shop-primaryText);
        text-decoration: none;
    }

    .basket-box-btn:hover .caption-value .price {
        text-decoration: none;
    }

    .basket-box-btn:hover i {
        color: var(--color-primary);
    }

}

/** main menu **/
.main-menu {
    overflow: hidden;
    text-align: center;
}

.header-bot {
    background: var(--shop-secondary);
}

.rwd-small-only {
    display: none;
}

.sticky-header .header-bot {
    opacity: 1;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 0;
    -webkit-transition: all 0.25s;
    -moz-transition: all 0.25s;
    -ms-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
}

.sticky .header-bot {
    -webkit-transform: translate3d(0, -100%, 0);
    -moz-transform: translate3d(0, -100%, 0);
    -ms-transform: translate3d(0, -100%, 0);
    -o-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
}

.sticky.rollup .header-bot {
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
    opacity: 1;
}

.header-bot-list ul {
    display: flex;
    align-content: stretch;
}

.header-bot-list li {
    display: block;
    width: 100%;
    text-align: center;
    position: relative;
}

.header-bot-list li + li:before {
    content: '';
    display: block;
    width: 1px;
    position: absolute;
    top: 15px;
    bottom: 15px;
    background: var(--shop-secondaryText);
}

.header-bot-list a {
    color: var(--shop-secondaryText);
    padding: 13px;
    display: block;
}

.header-bot-list a span {
    display: block;
    width: 100%;
    text-align: center;
}

.rwdMenu .rwd-basket.rwd-basket {
    color: #fff;
    background-color: var(--color-primary);
}

.rwdMenu .top-box {
    display: none;
}

.rwdMenu .shop-itemsTotalPrice-gross {
    white-space: nowrap;
}

.container.container--userpanel {
    max-width: 1300px;
}

.scrollbar.disable {
    display: none;
}

.login-box .panel-heading h1, .login-box .panel-heading h2 {
    font-size: 18px;
    line-height: 26px;
    width: 100%;
    font-weight: bold;
    margin: 0;
    padding: 12px 15px;
}

.login-box .panel-heading {
    margin: 0;
    background: inherit;
    font-weight: 700;
}

.login-box .panel-body {
    position: relative;
}

.login-box .login-submitRow {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-forgotPassword {
    width: 100%;
    margin-bottom: 15px;
}

.text.login-forgotPassword {
    color: #000000;
}

.text.login-forgotPassword a {
    text-decoration: underline;
    transition: all 0.4s;
}

.text.login-forgotPassword a:hover,
.text.login-forgotPassword a:focus {
    color: var(--shop-primary);
}

.login-info-content {
    padding: 0 8.33333333%;
}

.login-info-content .text-base {
    padding-bottom: 61px;
}

.login-info-content .btn-base {
    position: absolute;
    right: calc(8.33333333% + 15px);
    bottom: 15px;
}

.password-reset-info .panel-heading {
    border-bottom: none;
}

.userpanel-container h1 {
    font-size: var(--font-30);
    padding-bottom: 19px;
    font-weight: 900;
}

/** sidebar **/
.user-page-aside h3 {
    color: #000;
}

.sidebar-side-right .container-small {
    max-width: 1350px;
    padding-right: 0;
    padding-left: var(--space-60);
}

.sidebar-side-right .crud-wrapper {
    min-height: 200px;
}

.sidebar-sides {
    display: flex;
}

.sidebar-side-left h3 {
    font-size: calc(var(--font-36) - 4px);
    font-weight: 400;
    font-family: "Noto Serif", 'serif';
    padding: var(--space-25) var(--container-padding);
}

.sidebar-side-left {
    background: #EEE;
    width: 350px;
}

.sidebar-side-right {
    width: 100%;
}

.sidebar-side-left + .sidebar-side-right {
    width: calc(100% - 350px);
}

.submenu ul li {
    position: relative;
}

.submenu > ul > li > a {
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    letter-spacing: 0;
    padding: 12px 50px 11px var(--container-padding);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.submenu > ul {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.sidebar-side-left .submenu > ul > li > a {
    color: #000;
    font-weight: 600;
}

.submenu > ul > li.active > a,
.submenu > ul > li.active > a:hover {
    background: var(--shop-primaryHover);
    color: #fff;
}

@media screen and (min-width: 1140px) {
    .sidebar-side-right .submenu > ul {
        display: block !important;
    }

    .submenu > ul > li > a:hover {
        background: var(--shop-primaryHover);
        color: #fff;
        text-decoration: none;
    }

    .sidebar-side-left {
        min-height: 540px;
    }
}

.modal .alert-container {
    border: 0;
}

.filter-grid .btn {
    margin-top: 0;
}

.filter-grid {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0;
    border-radius: var(--shop-radius-default);
}

.filter-grid.filter-grid form {
    padding: 15px;
}

/** login page **/

.login-page .panel-body .form-offset-inner {
    height: 100%;
    padding-bottom: 15px;
}

.login-page .panel-body .form-offset-inner,
.login-page .panel-body .form-offset > .login-form-container {
    width: 100%;
}

.login-page .panel-body .form-offset {
    align-items: flex-end;
}

.login-page .panel-body .form-offset,
.login-page .panel-body {
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: stretch;
}

.login-page .panel-body .login-form-container {
    display: flex;
    width: 100%;
    flex-grow: 1;
}

.login-page .panel-body .login-form {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: space-between;
}

.row-flex-center {
    display: flex;
    justify-content: center;
    width: 100%;
}

.login-page .match-inner,
.login-page .panel {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.login-page .userpanel-container > .row {
    display: flex;
}

.filter-sort-grid .form-elements {
    margin: 0;
}

.filter-sort-grid {
    margin-bottom: 20px;
}

.crud-wrapper th {
    text-align: center;
}

.collection-row-wrapper .form-elements {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
}

@media screen and (min-width: 1140px) {
    .form-offset-indent {
        padding-left: 60px;
        padding-right: 60px;
    }

    .form-offset-indent-small {
        padding-left: 40px;
        padding-right: 40px;
    }
}

.order-history-container .table.table-crud thead th {
    vertical-align: middle;
    white-space: nowrap;
    padding: 12px 15px;
}

.order-history-container .table.table-crud > tbody > tr > td .table-value.table-value-right,
.order-history-container .table > thead > tr > .th-3.th-right,
.order-history-container .table > thead > tr > th,
.order-history-container .table.table-crud > tbody > tr > td {
    text-align: left;
}

.order-history-container .table.table-crud > tbody > tr > td {
    vertical-align: middle;
}

.order-history-container .table.table-crud > tbody > tr > td:first-child .table-value.table-value-right {
    text-align: center;
}

.order-history-view .panel.panel-default.panel-noBorderTop {
    border-top: none;
}

.order-history-container .grid-counter .table-perpage .form-inline .form-control {
    height: 26px;
}

.order-history-container .grid-counter .select2-container--default .select2-selection--multiple .select2-selection__rendered,
.order-history-container .grid-counter .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 24px;
}

.order-history-view table tbody tr td:first-child:nth-last-child(2) {
    width: 40%;
}

.order-history-view table tbody tr td:last-child:nth-child(2) {
    width: 60%;
}

.userpanel-container table > *:first-child > tr > *:first-child {
    border-top-left-radius: 6px;
}

.userpanel-container table > *:first-child > tr > *:last-child {
    border-top-right-radius: 6px;
}

.form-element-nip.has-feedback .input-group + .form-control-feedback {
    right: 136px;
}

.form-element-nip .btn.btn-default {
    line-height: 42px;
    padding: 0 5px;
}

.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th, .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td {
    border-top: 0;
}

.userpanel-container .form-element-collection\\AddressInvoiceCollection-container .form-element-label-wrapper .form-element-name,
.userpanel-container .form-element-collection\\AddressDeliveryCollection-container .form-element-label-wrapper .form-element-name {
    color: #000;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0;
    font-size: 16px;
}

.userpanel-container .form-element-collection\\AddressInvoiceCollection .collection-body .panel,
.userpanel-container .form-element-collection\\AddressDeliveryCollection .collection-body .panel {
    border-radius: 0 0 var(--shop-radius-default) var(--shop-radius-default);
}

.userpanel-container .form-element-collection\\AddressInvoiceCollection-container .form-element-label-wrapper,
.userpanel-container .form-element-collection\\AddressDeliveryCollection-container .form-element-label-wrapper {
    padding: 12px 15px;
    margin: 0;
    color: #000;
    background: #EEE;
    font-weight: 700;
    border-radius: var(--shop-radius-default) var(--shop-radius-default) 0 0;
}

.product-slider-discount {
    margin: -12px;
}

.shop-product-list {
    margin: calc(var(--space-50) / -2);
    padding-bottom: var(--space-60);
    display: flex;
    width: calc(100% + var(--space-50));
    flex-wrap: wrap;
}

.shop-product-list .alert {
    width: 100%;
    margin: var(--space-25);
}

.sort-section .form-element-container {
    display: flex;
    align-items: center;
    gap: calc(var(--space-25) + 5px);
}

.shop-sort-inner {
    margin-bottom: var(--space-40);
    display: flex;
    justify-content: flex-end;
}

.shop-product-box {
    padding: calc(var(--space-50) / 2);
    height: initial;
    width: 25%;
}

.asidedPage-content .shop-product-box {
    width: 33.33%;
}

.product-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.2s;
    align-items: flex-start;
    position: relative;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background: #FFF;
    padding: calc(var(--space-25) - 5px);
}

.shop-store-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 999;
    padding: 0;
    border: 0;
    background: transparent !important;
    box-shadow: none !important;
}

.shop-store-btn svg {
    width: 26px;
    height: 26px;
}

.shop-store-btn:hover .icon svg path,
.shop-store-btn.active .icon svg path {
    fill: var(--color-primary);
    stroke: var(--shop-primary) !important;
}


.shop-store-btn svg path {
    stroke-width: 1.2px;
    transition: all 0.3s;
    fill: #fff;
}

.product-labels {
    position: absolute;
    top: 0;
    left: 10px;
    display: flex;
    gap: 6px;
    z-index: 1;
    flex-wrap: wrap;
    pointer-events: none;
}

.shop-product-box .product-labels {
    position: static;
}

.shop-product-box .product-label {
    transform: none;
    writing-mode: unset;
    border-radius: 3px;
    padding: 5px 8px;

}

.product-label {
    writing-mode: vertical-lr;
    transform: rotate(-180deg);
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1;
    padding: 8px 5px;
    border-radius: 5px 5px 0px 0px;
}


.price-discount.price-discount-percent {
    display: inline;
    padding: 3px 5px;
    color: #fff;
    min-width: 73px;
    min-height: 28px;
    background-color: #D10019;
    border-radius: 4px;
    align-self: center;
    text-align: center;
    font-size: 15px;
    font-style: normal;
    font-weight: 800;
    line-height: 2em; /* 200% */
    text-transform: uppercase;
}

.shop-product-offer-box .price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.shop-product-offer-box .shop-product-price {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.product-link {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    opacity: 0;
}

.price-from {
    font-size: 12px;
}

.shop-product-box .product-content .product-price .caption {
    display: none;
}

.shop-product-box .product-content .price-discount.price-discount-percent {
    position: absolute;
    left: 20px;
    top: 20px;
}

.shop-product-box .product-image {
    transition: border-color 0.3s;
    border-radius: 10px;
    margin-bottom: calc(var(--space-25) + 5px);
    aspect-ratio: 1;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.shop-product-box .product-image::before {
    content: '';
    display: block;
    padding-top: 100%;
}

.product-image-inner {
    position: absolute;
    inset: 0;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (min-width: 1140px) {
    .product-container:hover .product-image {
        border-color: var(--color-primary);
    }
}

.product-image img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.product-price .price:not(.price-old) {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}

.product-price .price-gross,
.product-price .price-net {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 5px;
}

.product-price .price.price-old {
    font-size: 13px;
    line-height: 1.7142;
}

.product-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-content .product-labels {
    margin-bottom: 10px;
}

.product-title {
    font-size: 17px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.5294em; /* 152.941% */
    margin-bottom: 15px;
}

.product-availability {
    font-size: 14px;
    line-height: 1.7142;
    text-transform: uppercase;
}

.product-availability.available {
    color: #008933;
}

.product-content-bottom {
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.product-code {
    color: #989898;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 2em; /* 200% */
}

.section-discountGroup {
    padding-top: var(--space-60);
    position: relative;
    padding-bottom: calc(var(--space-60) + 10px);
}

.discount-group-aboveBanner {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.product-price .icon {
    width: 12px;
    height: 12px;
    z-index: 3;
    position: relative;
    margin-left: 5px;
}

.product-price .icon svg circle {
    fill: #000;
}

.product-price .caption {
    font-size: 14px;
}

.shop-product-top {
    display: flex;
    padding-bottom: var(--space-50);
    margin-bottom: var(--space-50);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.product-photo {
    width: 50%;
    padding-right: calc(var(--space-50) + 5px);
    position: relative;
}

.shop-product-top-right {
    width: 50%;
    display: flex;
    flex-direction: column;
}

.shop-product-top-right-inner {
    padding-left: calc(var(--space-50) + 5px);
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    flex-grow: 1;
}

.product-slide-inside {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--space-25);
    aspect-ratio: 1/1;
}

.product-slide-inside img {
    display: block;
    max-width: 100%;
}

.product-slide-image {
    display: block;
}

.product-slide-image img {
    display: block;
    max-width: 100%;
}

.shop-product-top-right .section-title {
    margin-bottom: calc(var(--space-40) - 10px);
    padding-left: calc(var(--space-50) + 5px);
}

.product-slider-wrapper {
    position: relative;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.10);
}

.product-slider-wrapper .arrows .btn:first-of-type {
    margin-left: unset;
}

.product-slider-wrapper .arrows .btn {
    pointer-events: auto;
}

.product-slider-wrapper .arrows {
    position: absolute;
    bottom: 20px;
    justify-content: center;
    transform: translateX(-50%);
    pointer-events: none;
    left: 50%;
    z-index: 9;
}

.shop-product-top .product-slider-wrapper .arrows .btn {
    background-color: rgba(255, 255, 255, 0.7);
    border-color: rgba(0, 0, 0, 0.1);
    color: #000;
}

@media screen and (min-width: 1140px) {
    .shop-product-top .product-slider-wrapper .arrows .btn:hover {
        background-color: var(--color-primary);
        border-color: var(--color-primary);
        color: #fff;
    }
}

.params-table {
    width: 100%;
    margin-bottom: var(--space-60);
}

.params-table td {
    line-height: 1.5;
    font-size: 16px;
    padding: 12px 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.params-table tr:nth-child(odd) {
    background: rgba(0, 0, 0, 0.05);
}

.shop-product-view-bottom {
    display: flex;
    flex-wrap: wrap;
    margin-top: var(--space-50);
    margin-bottom: calc(var(--space-60) + 10px);
}

.shop-product-view-bottom .text-bottom {
    width: 100%;
}

.shop-product-view-bottom .back-to-list {
    width: 100%;
}

.shop-product-view-description .section-title {
    margin-bottom: 33px;
}

.section-title-sm {
    font-size: max(var(--font-24), 21px);
    line-height: 1;
    font-family: "Noto Serif", serif;
    margin-bottom: var(--space-50);
}

.shop-product-view-bottom-right .product-slide-inside {
    border: 1px solid rgba(0, 0, 0, 0.10);
    border-radius: 10px;
    height: initial;
}

.shop-product-view-bottom-left {
    width: 50%;
    padding-right: var(--space-50);
}

.shop-product-view-bottom-right {
    width: 50%;
    padding-left: var(--space-60);
}

.shop-product-offer-box-bottom {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.shop-product-top-right .product-availability {
    font-size: 16px;
    font-family: "Noto Serif", serif;
    line-height: 1;
    margin-bottom: 16px;
    text-transform: initial;
}

.product-info-text {
    font-size: 16px !important;
    font-family: "Noto Serif", serif;
    line-height: 1.35 !important;
    margin-bottom: 16px;
    text-transform: initial;
    margin-top: 20px;
}

.contact-form .text.form-teaser {
    color: #fff;
    margin-bottom: calc(var(--space-60) - 5px);
}

.shop-quantity-discount table {
    width: 100%;
    margin-top: var(--space-50);
    margin-bottom: var(--space-40);
}

.shop-quantity-discount table td,
.shop-quantity-discount table th {
    padding: 10px 15px;
}

.shop-quantity-discount table th {
    font-size: calc(var(--font-24) - 3px);
    line-height: 1;
    font-family: "Noto Serif", serif;
    font-weight: 400;
}

.shop-quantity-discount table tr:nth-child(odd) {
    background-color: rgba(0, 0, 0, 0.03);
}

/** LOGIN **/
.login-box .panel {
    border-radius: var(--shop-radius-default);
    margin-bottom: 0;
}

.login-box .panel-heading {
    padding: 12px 15px;
    margin: 0;
    color: #000;
    background: #EEE;
    font-weight: 700;
    border-radius: var(--shop-radius-default) var(--shop-radius-default) 0 0;
}

.login-box .panel-heading h1,
.login-box .panel-heading h2 {
    padding: 0;
    margin: 0;
    text-transform: uppercase;
    font-weight: 600;
}

.login-box .panel-body {
    position: relative;
}

.login-info-content {
    padding: 0 8.33333333%;
}

.login-info-content .text-base {
    padding-bottom: 61px;
}

.login-info-content .btn-base {
    position: absolute;
    right: calc(8.33333333% + 15px);
    bottom: 15px;
}

.password-reset-info .panel-heading {
    border-bottom: none;
}

.userpanel-container .userpanel-title {
    font-size: calc(var(--font-36) + 4px);
    font-weight: 400;
    font-family: "Noto Serif", 'serif';
    padding-bottom: calc(var(--space-60) - 5px);
}


/**
 * Search results
 */

.search-group {
    margin: var(--space-40) 0;
}

.search-group-heading {
    margin-bottom: var(--space-25);
    padding-bottom: 10px;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.search-group-heading-title {
    font-size: var(--font-36);
    font-weight: 700;
    padding-right: var(--space-50);
    flex-shrink: 0;
}

.search-group-heading-main .search-group-heading-title {
    font-size: var(--font-40);
}

.search-boxes {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    flex-basis: 100%;
    margin: -5px;
}

.search-box {
    padding: 5px;
}

.shop-option-preview {
    position: absolute;
}

.shop-option-preview-container {
    padding: 10px;
    background: #fff;
    border: #d0d0d0;
    border: 1px solid var(--color-default);
    float: left;
}

.shop-option-preview-image,
.shop-option-preview-image img {
    float: left;
}

.shop-option-preview-square {
    height: 26px;
    width: 26px;
    display: inline-block;
    float: left;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    flex-shrink: 0;
    margin-right: var(--space-25);
}

.shop-option-preview-trigger {
    width: 100%;
}

.modal-wide .modal-dialog {
    width: 1000px;
    margin: 30px auto;
}

/*invoice*/
.invoice-address-fieldset .form-element-label-wrapper .form-element-name {
    font-size: 16px;
    line-height: 26px;
    width: 100%;
    font-weight: 600;
    text-transform: uppercase;
    color: #000;
    background: #EEE;
    margin: 0;
    border-radius: var(--shop-radius-default) var(--shop-radius-default) 0 0;
    padding: 10px 15px;
    border: 1px solid #e5e5e5;
    border-bottom-color: transparent;
    display: flex;
    align-items: center;
}

.invoice-address-fieldset .panel {
    border-radius: 0 0 var(--shop-radius-default) var(--shop-radius-default);
}

/*zgody*/
.consent-row .glyphicon {
    display: none !important;
}

hr.my-4 {
    border-top: 1px solid #d5d5d5;
}

.account-form-container {
    margin-top: 20px;
}

.renew-payment-form {
    margin-top: 60px;
}


/* Filers - tags */
.shop-filters-tags {
    width: 100%;
    float: left;
    margin-bottom: 20px;
}

.shop-filters-tags-reset {
    float: left;
    margin-right: 10px;
}

.shop-filters-tags-reset i {
    font-size: 10px;
}

.shop-filter-tag {
    font-size: 13px;
    float: left;
    margin-right: 20px;
}

.shop-filter-tag label {
    padding-right: 5px;
}

.shop-filter-tag button {
    margin-left: 2px;
    margin-right: 2px;
}

.shop-filter-tag button:hover span {
    text-decoration: line-through;
}

.shop-filter-tag .btn {
    margin-bottom: 6px;
}

.shop-filter-tag .btn i {
    margin-top: -2px;
    font-size: 10px;
    padding-left: 8px;
}

.shop-product-history-price-before-discount {
    font-size: 11px;
    font-weight: 400;
    color: #fff;
}

.shop-product-variant-table-row .shop-product-history-price-before-discount {
    margin-bottom: 0;
    max-width: 120px;
    display: inline-block;
    line-height: 11px;
}

.order-form .fixed-offset .row {
    display: block;
}

.basket-view-bottom .row {
    display: block;
}

.shop-add-to-basket-configurator .has-feedback .form-control {
    padding-right: 16px;
}

.shop-add-to-basket-configurator .glyphicon {
    display: none !important;
}

.shop-product-variants-body .select2-cms-option {
    display: flex;
    align-items: center;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rwdMenu .top-box {
    display: none !important;
}

@media screen and (max-width: 1600px) {
    .shop-delivery-data,
    .shop-invoice-data {
        width: 100% !important;
    }
}

@media screen and (max-width: 1440px) {
    .sidebar-side-left {
        width: 280px;
    }

    .sidebar-side-left + .sidebar-side-right {
        width: calc(100% - 280px);
    }
}

@media screen and (max-width: 1280px) {
    .shop-quantity-box input.input-qty {
        height: 40px;
    }

    .shop-quantity-box .qty-down,
    .shop-quantity-box .qty-up {
        height: 40px;
        width: 40px;
        line-height: 38px;
    }

    .basket-heading-title {
        padding-right: 0;
        margin-bottom: 15px;
    }

    .basket-heading-inner {
        flex-direction: column;
    }
}

@media screen and (max-width: 1280px) and (min-width: 1140px) {
    .basket-table td:last-child .btn {
        width: 40px;
        height: 40px;
    }
}

@media screen and (max-width: 1139px) {
    .basket-view .basket-coupon-box .btn {
        padding: 9px 10px;
    }

    .rwd-menu .user-nav-a .fa {
        width: 30px;
        text-align: center;
    }

    .rwd-menu .user-nav-a {
        color: #000;
        padding: 10px;
        text-transform: none;
    }

    .rwd-menu .container,
    .rwd-menu .user-nav {
        padding: 0;
    }

    .rwd-menu .social-icon {
        padding: 0;
        text-align: center;
        line-height: 38px;
    }

    .rwd-menu .social-list {
        text-align: center;
    }

    .rwd-menu .social-list li {
        display: inline-block;
        float: none;
        width: auto;
    }

    .rwd-menu .user-nav a .caption {
        display: inline-block;
    }

    .header-bot-list li + li:before,
    .header-bot {
        display: none;
        height: 0 !important;
    }

    .header-bot-list ul {
        display: block;
        background: var(--shop-secondary);
    }

    .user-nav .user-name {
        display: none;
    }

    .sidebar-side-left.active h3:after {
        content: '\f2c0\00a0\f104';
    }

    .sidebar-side-left h3:after {
        content: '\f2c0\00a0\f105';
        font-family: FontAwesome;

    }

    .sidebar-side-left h3:before {
        content: '';
        opacity: 0.6;
        background-color: var(--shop-primary);
    }

    .sidebar-side-left h3:after,
    .sidebar-side-left h3:before {
        left: 100%;
        top: 0;
        bottom: -1px;
        padding: 13px 10px;
        width: 60px;
        font-size: 20px;
        line-height: 26px;
        text-align: center;
        border-left: 1px solid rgba(255, 255, 255, 0.3);
        display: block;
        position: absolute;
        margin: 0;
    }

    .submenu > ul > li > a {
        padding: 9px 40px 9px 16px;
    }

    .sidebar-side-left h3 {
        position: relative;
        overflow: visible;
        padding: 10px 15px;
        margin-top: 20px;
    }

    .sidebar-side-left.active {
        left: 300px;
    }

    .sidebar-side-left .submenu ul {
        max-height: 100%;
        overflow: auto;
    }

    .sidebar-side-left .submenu {
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .sidebar-side-left {
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -ms-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
        left: 0;
        position: fixed;
        top: 135px;
        bottom: 0;
        z-index: 200;
        width: 300px;
        margin-left: -300px;
    }

    .sidebar-side-left + .sidebar-side-right {
        width: 100%;
    }

    table.basket-table .basket-table-bundle-row {
        margin-top: 10px;
    }

    .basket-table-bundle-row .shop-basket-list-product-set-parts li {
        padding-left: 30px;
    }

    .shop-basket-list-product-set-parts-name.product-name.name {
        width: 100%;
    }

    .basket-table .hide-mobile {
        display: none !important;
    }

    .basket-table {
        min-width: 100%;
        width: auto;
        border-spacing: 0;
    }

    .basket-summary .summary-row.summary-value .price {
        font-size: 24px;
    }

    .basket-table thead {
        display: none;
    }

    .basket-table tr {
        display: block;
        float: left;
        padding: 15px;
        width: 100%;
    }

    .basket-table thead tr > *, .basket-table tbody tr > * {
        border: 0;
    }

    .basket-table td {
        position: relative;
        display: block;
        float: left;
        padding: 8px 0;
        width: 100%;
        height: auto;
        text-align: left;
    }

    .basket-table-bundle-row td.basket-table-bundle-content {
        padding: 15px;
    }

    .basket-table td.lp::after,
    .basket-table td.remove-column::after {
        display: none;
    }

    .basket-table td::after {
        display: none;
    }

    .basket-table td:last-child::after {
        display: none;
    }

    .basket-table .remove-column,
    .basket-table td.product-info-box {
        width: 100%;
    }

    .basket-table td.lp {
        display: none;
    }

    .basket-table .lp {
        float: left;
        margin-right: 15px;
    }

    .basket-table .image {
        margin-right: 20px;
    }

    .basket-table-bundle-row .product-image {
        margin-left: 0;
    }

    .basket-table .caption.only-mobile {
        position: absolute;
        top: 50%;
        left: 0;
        float: left;
        max-width: 170px;
        text-transform: uppercase;
        font-weight: bold;
        font-size: 12px;
        color: #172237;
        -webkit-transform: translate(0, -50%);
        -moz-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
        -o-transform: translate(0, -50%);
        transform: translate(0, -50%);
    }

    .basket-table .caption + * {
        display: block;
        float: right;
        text-align: right;
    }

    .basket-table .name {
        padding-right: 0;
        max-width: 75%;
        width: 100%;
        font-size: 12px;
        float: none;
    }

    .basket-table .name.has-variant .title {
        vertical-align: top;
    }

    .basket-table span.name.has-variant {
        min-height: 48px;
        height: auto;
    }

    .basket-table td:last-child .btn,
    .basket-table td:last-child .btn:hover {
        background: transparent;
        color: #000;
        border-color: rgba(0, 0, 0, 0.1);
    }

    .basket-view .price-box.has-discount .price-old {
        display: inline-block;
    }

    .basket-view .price-box.has-discount .price-new {
        display: inline-block;
        padding-left: 10px;
    }

    .basket-table .input-counter {
        padding: 5px;
        width: 150px;
    }

    .basket-table .input-counter input {
        height: 30px;
        line-height: 24px;
        padding-top: 3px;
        padding-bottom: 3px;
    }

    .basket-view .shop-quantity-box .qty-down {
        left: 5px;
    }

    .basket-view .shop-quantity-box .qty-up {
        right: 5px;
    }

    .basket-view .shop-quantity-box .qty-down,
    .basket-view .shop-quantity-box .qty-up {
        top: 5px;
        width: 30px;
        height: 30px;
        line-height: 28px;
    }

    .basket-table tfoot th {
        border-top: 0;
    }

    .step-list .step .nb {
        width: 40px;
        height: 40px;
        line-height: 38px;
        margin-right: 8px;
    }

}

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

    .shop-order-login .row,
    .login-page .userpanel-container > .row {
        display: block;
    }

    .step-list .step .step-inner a {
        padding: 0;
    }

    .form-with-fixed .right-column {
        display: none;
    }

    .form-with-fixed .form-wrapper {
        width: 100%;
    }

    .form-with-fixed .form-wrapper .fixed-offset {
        width: 100%;
    }

    .login-box + .login-box {
        margin-top: 30px;
    }
}

@media screen and (max-width: 900px) {
    .step-inner:not(.active) .caption {
        display: none;
    }

    .step-list .step {
        min-width: 0;
    }

    .user-nav a .fa {
        padding: 0;
    }

    .heading.heading-hasright,
    .heading.heading-hasright .heading-content,
    .heading.heading-hasright .heading-right {
        display: block;
    }

    .heading-right {
        padding-left: 0;
    }
}

@media screen and (max-width: 767px) {
    .basket-view .btn-wrapper + .btn-wrapper,
    .basket-view .btn + .btn {
        margin-top: 10px;
    }

    .sidebar-side-left {
        top: 63px;
    }

    .search-toggle {
        display: inline-block;
    }

    .header-top .header-left,
    .header-top .header-right {
        display: none;
    }

    .basket-table tr {
        padding: 5px 15px;
    }

    .basket-table tr.has-bundle {
        clear: both;
        border-bottom: 0;
    }

    .basket-table-summary {
        margin: 0 0 10px;
        padding: 5px 15px;
        background-color: #C5C5C5;
    }

    .basket-table-summary .summary-row .caption {
        left: 15px;
    }

    .basket-table-summary .summary-row {
        padding: 0 15px;
    }

    .basket-view .btn {
        width: 100%;
    }

    .basket-view .basket-coupon-box .btn {
        width: auto;
        margin-bottom: 0;
    }

    .sidebar-side-right .crud-wrapper {
        min-height: 120px;
    }

    .order-history-container .table.table-crud > tbody > tr > td:first-child .table-value.table-value-right {
        text-align: left;
    }

    .logo {
        max-width: 175px;
    }

    #content {
        padding-top: 68px;
    }

    .basket-box-btn i {
        margin-left: 10px;
    }

}

@media screen and (max-width: 639px) {
    .basket-table td.product-info-box {
        padding-right: 0;
    }

    .heading-right {
        text-align: center;
    }

    .basket-title .step-list {
        display: inline-block;
        width: auto;
        padding-bottom: 0;
    }

    .step-list .step .step-inner a {
        text-align: left;
    }

    .step-list .step .nb {
        width: 32px;
        height: 32px;
        line-height: 30px;
        margin-right: 6px;
        font-size: 11px;
    }


}

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

    .basket-table .name {
        height: auto;
        max-width: inherit;
        width: 100%;
    }
}

@media screen and (max-width: 520px) {
    .basket-box-btn .caption {
        display: none;
    }

    .sidebar-side-left h3:after,
    .sidebar-side-left h3:before {
        padding: 14px 5px;
        width: 40px;
        line-height: 18px;
        font-size: 16px;
        text-align: center;
    }

    .sidebar-side-left h3 {
        font-size: 22px;
    }

    .sidebar-side-left.active {
        left: 260px;
    }

    .sidebar-side-left {
        width: 260px;
        margin-left: -260px;
    }

    .sidebar-side-left + .sidebar-side-right {
        width: 100%;
    }

    .basket-view .basket-coupon-container > label {
        padding: 0 0 7px;
    }

    .basket-view .basket-coupon-box {
        width: 100%;
    }

    .basket-coupon {
        padding-bottom: 20px;
    }

    .basket-view .basket-coupon-code {
        padding: 0 0 10px;
    }

    .basket-view .basket-coupon-box .btn {
        width: 100%;
        padding: 9px 10px;
    }

    .basket-view .basket-coupon-box .input-group {
        display: block;
        width: 100%;
    }

    .basket-coupon-box .form-inline .input-group .input-group-btn,
    .basket-view .basket-coupon-box .input-group > * {
        float: none;
        display: block;
        width: 100%;
    }

    .basket-coupon-box .form-inline .input-group .input-group-btn button {
        margin: 0;
    }

    .basket-coupon-box .element-row .form-element {
        display: block;
    }
}

@media screen and (max-width: 480px) {
    .basket-table-bundle-row .product-name {
        max-width: 158px;
    }

    .basket-table .discount,
    .basket-table .price-new {
        font-size: 18px;
    }

    .panel-title,
    *[class*="form-element-collection"] > .form-element-name,
    .basket-view .summary-box .form-element-name,
    .basket-view .summary-box h3,
    .filter-grid h2 {
        padding: 10px 15px;
    }

    .panel .panel-body,
    .basket-summary .form-element.form-element-radio,
    .basket-summary .price-and-discount-container,
    .filter-grid form {
        padding: 12px 15px;
    }

}

@media screen and (max-width: 460px) {
    .basket-table .caption.only-mobile,
    .order-section .basket-summary .summary-row .caption {
        width: 125px;
        word-break: break-all;
    }
}

@media screen and (max-width: 420px) {
    .basket-view .basket-summary tfoot td {
        font-size: 20px;
        line-height: 30px;
    }
}

/***************************************************************************************************************
 * STYLE NADPISUJĄCE - CUSTOMOWY DESIGN STRONY
 ***************************************************************************************************************/

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

    .basket-table th {
        padding: 16px 0;
    }
}

@media screen and (max-width: 1280px) {
    .step-list {
        text-align: center;
    }

    .basket-table .shop-quantity-box {
        width: 150px;
    }

    .basket-table .input-counter input {
        padding-left: 38px;
        padding-right: 38px;
    }
}

@media screen and (max-width: 1139px) {
    .basket-title .step-list {
        white-space: normal;
        margin: -5px -8px;
    }

    .step-list .step .nb {
        width: 36px;
        height: 36px;
        line-height: 34px;
    }

    .basket-heading-inner {
        padding: 15px 0;
        margin-bottom: 20px;
    }

    .basket-table {
        float: none;
        display: block;
        margin-left: auto;
        margin-right: auto;
        /*border-top: 1px solid rgba(0, 0, 0, 0.1);*/
        /*border-left: 1px solid rgba(0, 0, 0, 0.1);*/
        /*border-right: 1px solid rgba(0, 0, 0, 0.1);*/
    }

    .basket-table > * {
        display: block;
    }

    .basket-table:after {
        content: "";
        display: block;
        clear: both;
    }

    .basket-table tfoot th {
        display: block;
        text-align: center;
    }

    .basket-table .orderItemsValue {
        float: none;
    }

    .basket-table .shop-quantity-box {
        padding: 0;
    }

    .basket-view .shop-quantity-box .qty-down,
    .basket-view .shop-quantity-box .qty-up {
        top: 0;
    }

    .basket-view .shop-quantity-box .qty-up {
        right: 0;
    }

    .basket-view .shop-quantity-box .qty-down {
        left: 0;
    }

    .basket-table .shop-quantity-box {
        width: 120px;
    }

    .basket-coupon-col {
        padding: 20px;
    }

    .basket-coupon .text {
        font-size: 14px;
        line-height: 24px;
    }

    .basket-coupon .form .form-control {
        height: 40px;
    }

    .basket-coupon-box .form-inline .input-group .input-group-btn .btn {
        height: 40px;
    }

    /*.header-top-right .user-nav{*/
    /*    display: none;*/
    /*}*/
}

@media screen and (max-width: 900px) {
    .basket-coupon-col {
        float: none;
        width: auto;
    }

    .basket-coupon-col:nth-last-child(2) {
        border-right: none;
    }

    .basket-coupon-col:nth-child(2) {
        margin-left: 0;
        border-left: none;
        border-top: 1px solid #e0e0e0;
    }
}

@media screen and (min-width: 768px) {
    .order-history-container .table.table-crud > thead > tr > th:first-child,
    .order-history-container .table.table-crud > tbody > tr > td:first-child {
        width: 1%;
    }
}

@media screen and (max-width: 767px) {
    .step-list .step .step-inner a {
        font-size: 12px;
    }

    .step-list .step .nb {
        width: 34px;
        height: 34px;
        margin-right: 6px;
        line-height: 32px;
        font-size: 12px;
    }

    .order-history-container .rwd-table tbody tr {
        border: none;
    }

    .order-history-container .rwd-table tbody tr + tr {
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    .order-history-container .panel-border {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
    }
}

@media screen and (max-width: 639px) {
    .basket-title .step-list {
        margin: -5px;
        font-size: 0;
    }

    .form .shop-variant-option label {
        letter-spacing: 0;
        font-size: 13px !important;
    }

    .step-list .step {
        padding: 5px;
    }

    .basket-table .image {
        display: block;
        float: none;
        margin: 0 auto;
        margin-bottom: 20px;
    }

    .basket-set .basket-set-icon {
        width: 30px;
    }

    .basket-set .basket-set-image {
        width: 70px;
    }

    .basket-set .basket-set-name {
        width: calc(100% - 100px);
    }
}

@media screen and (max-width: 1139px) and (min-width: 640px) {
    .basket-table .product-info-box-inner {
        display: table;
        width: 100%;
    }

    .basket-table .product-info-box-inner > * {
        display: table-cell;
        vertical-align: middle;
        float: none;
    }

    .basket-table .name {
        width: auto;
        padding-left: 15px;
    }

    .basket-table tbody .lp {
        width: 1%;
        padding-right: 5px;
    }

    .basket-view .thumbnail {
        margin-bottom: 0;
        width: 90px;
    }

    .basket-set .basket-set-icon {
        width: 30px;
    }

    .basket-set .basket-set-image {
        max-width: 70px;
    }
}

@media screen and (max-width: 1139px) and (min-width: 561px) {
    .basket-table tbody tr:nth-child(4n+3),
    .basket-table tbody tr:nth-child(4n+2) {
        background-color: #f9f9f9;
    }

    .basket-table tbody tr:nth-child(odd):last-child {
        width: 100%;
    }

    .basket-table tbody tr:nth-child(4n),
    .basket-table tbody tr:nth-child(4n+1) {
        background-color: #fff;
    }

    .basket-table {
        border: none;
    }

    .basket-table thead {
        display: none;
    }

    .basket-table tbody {
        font-size: 0;
        overflow: hidden;
    }

    .basket-table tbody tr {
        position: relative;
        display: inline-block;
        vertical-align: top;
        width: 50%;
        padding: 15px 15px 60px 15px;
        font-size: medium;
        border-bottom: 0;
        border-top: 0;
        border-left: 0;
        border-top: 1px solid #333f48;
    }

    .basket-table tbody tr:nth-child(1),
    .basket-table tbody tr:nth-child(2) {
        border-top: none;
    }

    .basket-table tbody tr:first-child:last-child {
        width: 100%;
    }

    .basket-table .remove-column {
        position: absolute;
        left: 15px;
        right: 15px;
        bottom: 5px;
        width: auto;
    }

}

@media screen and (max-width: 560px) {
    .btn.btn-pay > * {
        display: block;
        text-align: center;
    }

    .btn.btn-pay {
        padding: 8px 15px;
        font-size: 16px;
    }

    .btn.btn-pay img {
        height: 1.6em;
        margin: 5px auto;
    }

    .basket-table {
        margin-bottom: 10px;
    }

    .basket-table tr:not(:first-child) {
        border-top: 1px solid #333f48;
    }
}

@media screen and (max-width: 520px) {
    .basket-coupon {
        padding-bottom: 0;
    }

    .basket-coupon .form .form-control {
        margin-bottom: 10px;
    }

    .basket-coupon-box .form-inline .input-group .input-group-btn .btn {
        border-radius: 6px;
    }
}

@media screen and (max-width: 480px) {
    .basket-coupon-col {
        padding: 15px;
    }

    .search-group-heading {
        flex-direction: column;
    }

    .search-group-heading-title {
        padding-right: 0;
        margin-bottom: 5px;
    }

    .search-box {
        width: 100%;
    }

    .search-box .btn {
        width: 100%;
    }
}

@media screen and (max-width: 420px) {
    .basket-view .basket-summary.basket-summary-total {
        margin-bottom: 30px;
    }

    .basket-view legend {
        padding: 10px 15px;
    }
}


/* --------------- LOGIN --------------- */
@media screen and (max-width: 991px) {

}

@media screen and (max-width: 767px) {
    .login-info-content {
        padding: 0;
    }

    .login-info-content .btn-base {
        right: 15px;
    }
}

@media screen and (max-width: 480px) {
    .login-box .btn.btn-base {
        position: static;
        width: 100%;
    }

    .login-box .login-submitRow {
        flex-direction: column;
    }

    .login-box .login-submitRow .login-forgotPassword {
        font-size: 14px;
    }

    .login-box .login-submitRow .delete-backToUser {
        margin-top: 15px;
    }

    .login-info-content .text-base {
        margin-bottom: 15px;
        padding-bottom: 0;
    }
}
