@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;
}

.shop-product-list{
    margin: -7px;
    display: flex;
    flex-wrap: wrap;
}

.shop-product-list .alert{
    width: 100%;
    margin: 7px;
}

.shop-product-box {
    padding: 12px;
    width: 25%;
}
.product-container {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.product-labels{
    position: absolute;
    top: 12px;
    left: 10px;
    writing-mode: vertical-lr;
    transform: rotate(-180deg);
}

.product-label{
    border-radius: 5px;
    display: block;
    padding:  10px 4px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

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

.product-title{
    font-size: 14px;
    font-weight: 400;
    color: #000;
    text-transform: uppercase;
    line-height: 1.7142em;
    padding-bottom: 15px;
}

.product-image{
    position: relative;
}

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

.shop-product-box .price-box .price-gross,
.shop-product-box .price-box .price-net{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
}

.shop-product-box .price-box .price-gross .caption,
.shop-product-box .price-box .price-net .caption {
    color: #000;
    font-size: 15px;
    font-weight: 400;
}

.shop-product-box .price-box .price:not(.price-old){
    color: #000;
    font-weight: 700;
    font-size: 24px;
}

.shop-product-box .price-box .price-old{
    color: #000;
    font-size: 11px;
    font-weight: 700;
}

.product-content-bottom-inner .product-price{
    flex-grow: 1;
}

.product-content-bottom-inner{
    margin-top: auto;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: var(--space-25);
}

.product-actions{
    display: flex;
}

.product-box-info-item{
    display: block;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 14px;
    text-transform: uppercase;
}

.shop-product-box.product-horizontal .product-box-info-item{
    font-size: 12px;
}

.product-box-info-item .icon{
    margin-right: 7px;
    flex-shrink: 0;
    width: 15px;
    height: 15px;
}

.product-box-info-item-value{
    font-size: 11px;
    font-weight: 400;
    line-height: 17px;
}

.product-box-info{
    padding-right: 10px;
}

.product-actions .btn{
    color: #000;
}

.product-actions .shop-add-to-basket{
    margin-left: 8px;
}

.product-actions .btn.btn-arrow .icon *{
    transition: none;
}

@media screen and (min-width: 1140px){
    .product-actions .btn.btn-arrow:hover{
        background-color: var(--color-primary) !important;
        border-color:  var(--color-primary) !important;
        color: #fff !important;
    }
}

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

.price-wrapper{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.product-view-top{
    display: flex;
    margin-bottom: var(--space-50);
}

.product-photo{
    width: 40%;
    position: relative;
}

.product-view-right{
    width: 60%;
    padding-left: var(--space-60);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.product-slider-wrapper{
    position: relative;
    margin-bottom: calc(var(--space-25) + 10px);
}

.product-slider{
    width: 100%;
    aspect-ratio: 1;
    display: block;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.product-slider-arrows{
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 3;
}

.product-slider .product-slide{
    aspect-ratio: 1;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.product-slider:not(.slick-initialized) .product-slide:nth-of-type(n + 2){
    display: none;
}

.product-nav-slider{
    display: flex;
    margin: -8px;
}

.product-nav-slider:not(.slick-initialized) .product-nav-slide:nth-of-type(n + 5){
    display: none;
}

.product-nav-slide{
    width: 25%;
    padding: 8px;
}

.product-slide-inner{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    padding: 15px;
}

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

.product-slide-inside{
    position: relative;
}
.product-photo .product-label{
    padding: 17px 8px;
    font-size: 17px;
}

.product-view-right .section-title.section-title-md{
    padding-bottom: var(--space-25);
    margin-bottom: calc(var(--space-40) - 5px);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.shop-product-offer-box{
    position: relative;
    width: 100%;
    padding: var(--space-40) var(--space-50);
    margin-bottom: calc(var(--space-50) - 3px);
}

.shop-product-offer-box:before{
    content: '';
    position: absolute;
    inset: 0;
    z-index: -2;
    background: var(--color-gradient);
    border-radius: 10px;
}

.shop-product-offer-box:after{
    content: '';
    position: absolute;
    inset: 3px;
    z-index: -1;
    background: #fff;
    border-radius: 7px;
}

.shop-product-offer-box-inner{
    display: flex;
    flex-direction: column;
    gap: calc(var(--space-25) - 6px);
}

.product-box-offer-right{
    display: grid;
    grid-template-columns: 0.5fr 1fr 1fr;
    gap: 20px;
    align-items: center;
}

.shop-product-offer-box .price-net,
.shop-product-offer-box .price-gross{
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-60);
    align-items: center;
}

.product-box-offer-top:not(.not-available) .price-gross{
    /*justify-content: space-between;*/
    display: grid;
    grid-template-columns: 0.5fr 1fr 1fr;
    gap: 20px;
    align-items: center;
}

.shop-product-offer-box .price-gross .caption{
    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;
}

.product-box-offer-right > .shop-quantity-box.input-counter{
    padding: 0;
}

.product-box-offer-right .shop-quantity-box input.input-qty{
    height: 50px;
}

.product-box-offer-right > .btn.btn-lg{
    min-height: 50px;
}

.product-box-offer-right .shop-quantity-box .qty-down,
.product-box-offer-right .shop-quantity-box .qty-up{
    top: 0;
    width: 50px;
    height: 50px;
    line-height: 48px;
}

.product-box-offer-right .shop-quantity-box .qty-down:before,
.product-box-offer-right .shop-quantity-box .qty-up:before{
    height: 48px;
}

.shop-product-offer-box .price-net .price:not(.price-old){
    font-size: calc(var(--font-24) + 2px);
    font-weight: 700;
}

.shop-product-offer-box .price-net .price.price-old{
    font-size: 13px;
    font-weight: 400;
}

.shop-product-offer-box .price-net .unitOfMeasure{
    font-size: 14px;
}

.shop-product-offer-box .price.price-old{
    width: 100%;
}

.shop-product-offer-box .price-gross .price:not(.price-old){
    font-weight: 700;
    font-size: 24px;
}

.shop-product-offer-box .price-gross .unitOfMeasure{
    font-weight: 400;
    font-size: 13px;
}

.shop-product-offer-box .price-box{
    /*margin-bottom: calc(var(--space-25) - 6px);*/
}

.shop-product-offer-box .btn.btn-lg{
    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;
}

.offer-box-bottom-left-caption{
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
}

.shop-product-offer-box .btn .icon{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 21px;
    height: 21px;
    flex-shrink: 0;
}

.offer-box-info-item {
    font-size: 13px;
    font-weight: 400;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.offer-box-info-item .icon{
    margin-right: 10px;
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

.offer-box-info-item + .offer-box-info-item{
    margin-top: 8px;
}

.shop-product-slider .slick-list,
.shop-product-slider .slick-track{
   display: flex;
}


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

.login-box .panel-heading {
    padding: 12px 15px;
    margin: 0;
    color: var(--shop-secondary);
    background: var(--shop-default);
    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;
    /*font-size: 20px;*/
}

.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: var(--font-36);
    padding-bottom: 19px;
    font-weight: 900;
}

.userpanel-container .breadcrumb-container {
    margin: 20px 0 8px;
}

/**
 * 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: stretch;
    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: 18px;
    line-height: 26px;
    width: 100%;
    font-weight: bold;
    color: var(--shop-secondary);
    background: var(--shop-default);
    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;
}
.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: 13px;
    font-weight: 400;
    margin-bottom: 20px;
}
.shop-product-variant-table-row .shop-product-history-price-before-discount {
    margin-bottom: 0;
    max-width: 120px;
    display: inline-block;
    line-height: 11px;
}
