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

.product-list-slider {
    width: calc(100% + 24px);
    margin: -12px;
}

.shop-product-box {
    padding: 12px;
    width: 25%;
}

.product-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;

    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    transition: all .2s linear;
}

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

.product-container-link {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.product-box-image {
    width: 100%;
    height: 245px;
    margin-bottom: 15px;
    padding: var(--space-25);
    padding-bottom: 0;
    position: relative;
    transition: height 0.3s;
}

.product-additional-table {
    transition: height 0.3s;
    height: 0;
    overflow: hidden;
    width: 100%;
}

.product-top-bar{
    width: 100%;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: flex-end;
}

.product-additional-table{
    padding-top: 15px;
}

.product-row-right .product-additional-table{
    height: initial;
    overflow: initial;
    padding-top: 40px;
}

.shop-product-box.active .product-box-image {
    height: 140px;
}

.shop-product-box.active .product-additional-table{
    height: 109px;
    overflow-x: auto;
    position: relative;
    z-index: 2;
}

.btn-show-table-product{
    margin-top: 30px;
}

.product-top-content {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: var(--space-25);
    padding-top: 0;
    gap: 10px;
}

.product-top-content .product-title {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
}

.product-top-content .price:not(.price-old) {
    font-size: 20px;
    font-weight: 700;
    color: #000;
}

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


/** 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: #B5917C;
    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: 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: 18px;
    line-height: 26px;
    width: 100%;
    font-weight: bold;
    color: var(--shop-primary);
    background: #EFEFEF;
    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: 11px;
    font-weight: 400;
    color: var(--color-primary);
    margin-bottom: 20px;
    letter-spacing: -0.2px;
}

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