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

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

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

.shop-product-box {
    padding: 7px;
    width: 20%;
}
.product-container {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

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

.product-label{
    display: block;
    padding:  10px 2px;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
}

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

.product-title {
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.4285;
    margin-bottom: 11px;
}

.product-horizontal .product-title{
    font-weight: 600;
}

.product-image{
    position: relative;
    padding: calc(var(--space-25) - 4px);
    margin-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
    transition: margin-top 0.5s;
}

.product-content-top {
    padding: 0 calc(var(--space-25) - 4px);
}

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

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

.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: flex-end;
}

.shop-product-box .price-box .price-gross .caption,
.shop-product-box .price-box .price-net .caption {
    font-size: 14px;
    font-weight: 400;
}

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

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

.product-price{
    border-bottom: 1px solid #e5e5e5;
    padding: 0 calc(var(--space-25) - 4px);
    padding-bottom: 14px;
}

.product-content-bottom-inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px calc(var(--space-25) - 4px);
}

.product-actions{
    display: flex;
}

.product-box-info-item{
    display: flex;
    align-items: center;
}

.product-box-info-item.green {
    color: #058515;
    font-weight: 600;
}
.product-box-info-item.green .product-box-info-item-value{
    font-weight: 400;
    color: #000;
}

.product-box-info-item.green .icon{
    color: #058515;
}

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

.product-box-info-item .icon svg{
    width: 17px;
    height: 17px;
}

.product-box-info-item-value{
    font-size: 12px;
    font-weight: 300;
    line-height: 1.4;
}

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

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

}

.shop-product-box:not(.product-horizontal) .product-actions .btn{
    width: 38px;
    height: 38px;
    padding: 6px;
    position: relative;
    z-index: 2;
}

.product-actions .shop-add-to-basket{
    margin-left: 8px;
    position: relative;
    z-index: 2;
}

.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;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.product-view-content{
    display: flex;
    padding: var(--container-padding);
    background: #fff;
    box-shadow: var(--shadow);
    margin-bottom: 14px;
}

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


.product-view-right{
    width: 60%;
    padding-left: 14px;
}

.product-slide-inside{
    position: relative;
    background: #fff;
}

.product-slide-inside::before{
    content: '';
    display: block;
    width: 100%;
    padding-top: 100%;
}

.product-slide-image{
    position: absolute;
    inset: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
    overflow: hidden;
    box-shadow: var(--shadow);

    transition: border-color 0.3s;
}

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

.product-nav-slider{
    padding:0 var(--space-50);
    display: flex;
}

.product-slide{
    flex-grow: 1;
    flex-shrink: 0;
}

.product-photo .product-slider{
    display: flex;
    overflow: hidden;
}

.product-photo .slick-list,
.product-photo .slick-track{
    display: flex;
    width: 100%;
}

.product-photo .product-slider .product-slide{
    width: 100%;
}

.product-nav-slider .product-slide.slick-current .product-slide-image{
    border-color: var(--color-primary);
}


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

.product-slider-nav-wrapper .arrow:hover svg *{
    fill: var(--color-secondary);
}
.product-slider-nav-wrapper .arrow svg *{
    fill: var(--color-primary);
}
.product-slider-nav-wrapper .arrow{
    color: var(--color-primary);
}
.product-slider-nav-wrapper{
    position: relative;
}

.product-nav-slider{
    margin: -5px;
}

.product-nav-slider .product-slide{
    padding: 5px;
}

.product-slider-arrows .arrow-left{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left:  10px;
    z-index: 1;
}

.product-slider-arrows .arrow-right{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    z-index: 1;
}

.product-photo .product-labels{
    top: 21px;
    left: 20px;
}

.product-photo .product-label{
    padding: 17px 8px;
    font-size: 17px;
}

.product-view-right .section-title.section-title-md{
    padding-bottom: var(--space-25);
    font-size: var(--font-24);
}


.shop-product-offer-box-top{
    display: flex;
    background-color: var(--color-primary);
    margin: 0 1px;
}

.shop-product-offer-box-content-element{
    display: flex;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.shop-product-offer-box-top-item {
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    padding: 15px 20px;
    border-right: 1px solid #e5e5e5;
}

.shop-product-offer-box-top-item.col1{
    width: 33%;
}
.shop-product-offer-box-top-item.col2{
    width: 25%;
}

.shop-product-offer-box-top-item.col3{
    width: 18%;
}
.shop-product-offer-box-top-item.col3.one-price{
    width: 43%;
}

.shop-product-offer-box-top-item.col4{
    width: 24%;
}

.shop-product-offer-box-content-item.col1{
    width: 33%;
    border-left: 1px solid rgba(0,0,0,0.1);
}
.shop-product-offer-box-content-item.col2{
    width: 25%;
}

.shop-product-offer-box-content-item.col3{
    width: 18%;
}
.shop-product-offer-box-content-item.col3.one-price{
    width: 43%;
}

.shop-product-offer-box-content-item.col4{
    width: 24%;
}

.shop-product-offer-box-content-item {
    padding: 0 10px;
    border-right: 1px solid rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    min-height: 50px;
}

.shop-product-offer-box-content-item .title{
    font-weight: 700;
    margin-right: var(--space-50);
}

.shop-product-offer-box-content-item .btn.btn-circle{
    width: 35px;
    height: 35px;
    margin-left: 8px;
}


.product-box-offer-left{
    width: 55%;
    padding-right: var(--space-50);
}

.product-box-offer-right{
    width: 45%;
    padding-left: var(--space-25);
}


.shop-product-offer-box .price-gross{
    margin-top: 7px;
}

.shop-product-offer-box .price-net,
.shop-product-offer-box .price-gross{
    display: flex;
    align-items: baseline;
}

.shop-product-offer-box .price-net{
    gap: 6px;
    flex-direction: row-reverse;
}

.shop-product-offer-box .price-net .caption{
    font-weight: 700;
}

.shop-product-offer-box .price-gross{
    gap: 3px;
}

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

.shop-product-offer-box .price-net .price.price-old{
    font-size: 11px;
    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{
    font-weight: 400;
    font-size: 13px;
}

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

.shop-product-offer-box .btn.btn-lg{
    font-weight: 400;
    text-transform: uppercase;
    box-shadow: var(--shadow) !important;
}

.offer-box-bottom-left-caption{
    font-weight: 400;
    font-size: 13px;
}

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

.offer-box-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: calc(var(--space-25) + 5px);
}

.offer-box-info-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    margin-bottom: calc(var(--space-25) + 5px);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.offer-box-info .caption{
    line-height: 1;
}

.offer-box-info-item {
    font-size: 14px;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

.offer-box-info-item a {
    font-weight: 600;
}

.offer-box-info-item strong {
    font-weight: 600;
}

.offer-box-info-top .offer-box-info-item {
    width: initial;
}

.offer-box-info-item .icon{
    margin-right: 8px;
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    border-radius: 50%;
    background-color: #058515;
}

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

.product-view-content-bottom {
    /*display: flex;*/
    /*margin-bottom: var(--space-25);*/
}

.product-view-content-bottom .section-title,
.files-section .section-title{
    margin-bottom: calc(var(--space-25) - 5px);
}

.product-view-description {
    margin-bottom: var(--space-50);
}

.product-params-wrapper {
    width: 60%;
}

.shop-product-box.product-horizontal .product-params-wrapper .section-title{
    display: none;
}

.product-view-description + .product-params-wrapper {
    padding-left: var(--space-50);
}

.files-section{
    width: 40%;
}

a.product-param-item-value{
    text-decoration: underline;
}



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

.login-box .panel-heading {
    padding: 12px 15px;
    margin: 0;
    color: #fff;
    background: var(--shop-primary);
    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: calc(var(--font-36) - 2px);
    padding-bottom: 19px;
    font-weight: 700;
}

.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: 14px;
    line-height: 26px;
    width: 100%;
    font-weight: bold;
    color: #fff;
    background: var(--shop-primary);
    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;
}