.page-heading {
    margin: var(--space-60) 0;
}

.page-heading-inner {
    display: flex;
    flex-direction: column;
    gap: var(--space-40);
}

.page-heading .page-title {
    margin-bottom: 0;
}

.page-title-center {
    text-align: center;
}

.contact-bottom {
    position: relative;
    padding-top: calc(var(--space-60) - 3px);
    padding-bottom: calc(var(--space-60) + 5px);
    color: #fff;
}

.contact-bottom-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.contact-bottom-bg:before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--color-primary);
    opacity: .7;
}

.contact-bottom-bg > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-bottom-inner {
    display: flex;
}

.contact-bottom-right {
    width: 60%;
    flex-shrink: 0;
    padding-left: calc(var(--space-60) + 5px);
}

.contact-bottom-left {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: calc(var(--space-25) + 5px);
    margin-top: calc(2 * var(--space-40));
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 19px;
    font-size: var(--font-24);
    transition: .3s all;
}

.contact-info-item > .icon {
    width: 39px;
    height: 39px;
    color: var(--color-secondary);
}

.contact-socials {
    margin-top: calc(2 * var(--space-40));
    display: flex;
    gap: calc(var(--space-25) + 3px);
    flex-direction: column;
}

.contact-left-top {
    font-size: var(--font-30);
    line-height: 1.26666em;
}

/*
Aktualności
 */
.news-list {
    margin-bottom: var(--space-50);
}

.news-list .news-item-title {
    font-size: calc(var(--font-24) + 2px);
}

.news-list .news-item-right .text {
    -webkit-line-clamp: 5;
    font-size: 16px;
}

.news-list .news-item-right {
    padding: calc(var(--space-25) + 5px) 0;
}

.news-list-wrapper .pagination-wrapper {
    border-top: 1px solid rgba(0, 0, 0, .1);
    margin-top: var(--space-50);
    padding-top: calc(var(--space-60));
    max-width: 100%;
}

.news-item-img {
    position: relative;
    overflow: hidden;
    display: block;
    border-radius: 10px;
}

.news-deco {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: .3s all;
    color: #fff;
}

.news-deco svg {
    display: block;
    width: 100%;
    height: 100%;
}

.news-deco svg path {
    fill: currentColor;
}

.news-list .news-item:nth-child(odd) .news-deco,
.news-slider .slick-slide > div:nth-child(odd) .news-deco {
    right: 0;
    transform: translateY(-50%) translateX(45px);
}

.news-list .news-item:nth-child(even) .news-deco,
.news-slider .slick-slide > div:nth-child(even) .news-deco {
    left: 0;
    transform: translateY(-50%) translateX(-45px) rotate(180deg);
}

@media screen and (min-width: 1140px) {
    .news-list .news-item:nth-child(odd) .news-item-img:hover .news-deco,
    .news-slider .slick-slide > div:nth-child(odd) .news-item-img:hover .news-deco {
        right: 0;
        transform: translateY(-50%) translateX(-10px);
    }

    .news-list .news-item:nth-child(even) .news-item-img:hover .news-deco,
    .news-slider .slick-slide > div:nth-child(even) .news-item-img:hover .news-deco {
        left: 0;
        transform: translateY(-50%) translateX(10px) rotate(180deg);
    }

    .news-item-img:hover .news-deco {
        color: var(--color-primary);
    }
}

.pagination-wrapper ul li.next a,
.pagination-wrapper ul li.prev a {
    width: 54px;
    height: 54px;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    background-color: #fff;
    border-radius: 50%;
}

.pagination-wrapper ul li.next a:hover,
.pagination-wrapper ul li.next a:focus,
.pagination-wrapper ul li.prev a:hover,
.pagination-wrapper ul li.prev a:focus {
    border-color: var(--color-primary);
    background-color: #fff;
    color: var(--color-primary);
}

@media screen and (min-width: 1140px) {
    .pagination-wrapper ul li.next a:hover,
    .pagination-wrapper ul li.prev a:hover {
        background-color: var(--color-primary);
        color: #fff;
    }
}

.pagination-wrapper ul li.next {
    margin-left: auto;
}

.pagination-wrapper ul li.prev {
    margin-right: auto;
}

.pagination-wrapper ul li {
    padding: 0 var(--space-25);
}

.pagination-wrapper > ul {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
}

@media screen and (min-width: 1140px) {
    .pagination-wrapper ul li:not(.prev):not(.next) a:hover {
        text-decoration: underline;
    }
}

.pagination-wrapper ul li.active a {
    font-weight: 600;
}

/*
Podgląd newsa
 */
.news-view-top-wrapper {
    margin-bottom: calc(var(--space-60) + 10px);
}

.news-view-top {
    display: flex;
    align-items: center;
}

.news-view-top-right {
    flex-grow: 1;
}

.news-view-top-left {
    width: 55%;
    flex-shrink: 0;
    padding-right: calc(var(--space-60) + 10px);
}

.news-view-img.border {
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.news-view-img {
    display: block;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.news-view-img > img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.news-view-img-deco svg {
    display: block;
    width: 100%;
    height: 100%;
}

.news-view-img-deco {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) translateX(45px);
    transition: .3s all;
    color: #fff;
}

.news-view-img-deco svg path {
    fill: currentColor;
}

@media screen and (min-width: 1140px) {
    .news-view-img:hover .news-view-img-deco {
        transform: translateY(-50%) translateX(-10px);
        color: var(--color-primary);
    }
}

.news-view-top-right time {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 20px;
    display: block;
}

.news-view-title {
    font-size: calc(var(--font-24) + 2px);
    line-height: 1.2692em;
}

.news-view-top-right {
    padding: calc(var(--space-25)) 0;
}

.news-view-top-right > .text {
    margin-top: calc(var(--space-40) + 3px);
    font-size: 16px;
}

.news-view-desc {
    font-size: 16px;
    margin-bottom: calc(var(--space-60) + 10px);
}

.gallery-list-item {
    padding: 4px;
    width: 33.33%;
}

.gallery-list {
    margin: -4px;
}

.gallery-picture {
    border-radius: 10px;
    overflow: hidden;
}

.return-btn-wrapper {
    margin: var(--space-60) 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-picture-hover {
    background-color: rgba(1, 57, 104, 0.6);
}

/*
podgląd szkolenia
 */
.shop-product-view-wrapper {
    margin-bottom: calc(var(--space-50) + 5px);
}

.shop-product-view-top {
    margin-bottom: var(--space-50);
    min-height: 450px;
}

.product-photo {
    position: relative;
}

.product-photo-img.border img {
    width: unset;
    height: unset;
    max-width: 100%;
    max-height: 100%;
}

.product-photo-img.border {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1364/576;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.product-photo-img {
    border-radius: 10px;
    overflow: hidden;
}

.product-photo-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-photo .image-wrapper{
    position: relative;
}
.product-photo .product-label{
    min-height: 46px;
    min-width: 116px;
    border-radius: 60px;
    font-size: 19px;
    letter-spacing: 0.05em;
}
.product-photo > .product-labels {
    right: unset;
    top: calc(var(--space-25) + 5px);
    left: calc(var(--space-25) + 5px);
}

.product-photo-desc svg{
    flex-shrink: 0;
    width: 23px;
    height: 23px;
    display: block;
}
.product-photo-desc{
    left: calc(var(--space-25) + 5px);
    font-size: 20px;
    padding: 13px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    font-weight: 300;
    border-radius: 100px;
    bottom: calc(var(--space-25) + 5px);
    max-width: calc(63% - var(--space-25) - 5px);
    position: absolute;
}

.shop-product-view-wrapper {
    position: relative;
}

.shop-product-view-bottom {
    width: 100%;
    padding-right: calc(360px + (2 * var(--space-60) + var(--space-25)) + (var(--space-25) + 5px));
}

.shop-product-desc {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: var(--space-40);
}

.shop-product-desc.text > h2 {
    font-size: calc(var(--font-24) + 2px);
    line-height: 1.2692em;
    font-weight: 400;
}

.shop-product-desc.text p + h2 {
    margin-top: 16px;
}

.shop-return-btn-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-product-affix-container {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: calc(var(--space-40) + 5px) calc(var(--space-25) + 5px);
    margin-bottom: 0;
    width: 360px;
}

.product-affix-box {
    padding: var(--space-50) calc(var(--space-25) + 5px);
    background-color: #fff;
    border-radius: 10px;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .25);
}

.product-affix-box-name {
    font-size: 18px;
    line-height: 1.27777em;
    text-align: center;
    font-weight: 500;
}

.product-affix-box-top {
    position: relative;
    z-index: 1;
}

.shop-product-offer-box {
    position: relative;
    z-index: 1;
}

.product-affix-box-top > .text {
    font-size: 14px;
    font-weight: 300;
    text-align: center;
    margin-top: calc(var(--space-25) - 3px);
}

.shop-product-offer-box .shop-add-to-basket {
    margin-top: calc(var(--space-25) + 5px);
    padding-top: calc(var(--space-25));
    border-top: 1px solid rgba(0, 0, 0, .2);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.shop-product-history-price-before-discount {
    display: none;
}

.shop-product-price .price-gross .price {
    font-size: calc(var(--font-24) + 2px);
    font-weight: 700;
    text-align: center;
}

.shop-product-offer-box button.btn {
    width: 100%;
    max-width: 216px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    gap: 20px;
    text-transform: unset;
}

.shop-product-offer-box .shop-quantity-box {
    width: 100%;
    max-width: 216px;
    margin-top: calc(var(--space-25) - 12px);
}

.shop-product-offer-box .shop-quantity-box input.input-qty {
    border-radius: 30px;
    border-color: var(--color-primary);
    font-size: 15px;
}

.shop-product-offer-box .shop-quantity-box .qty-down,
.shop-product-offer-box .shop-quantity-box .qty-up {
    border: none;
    background: transparent;
    width: 15px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-primary);
}

.shop-product-offer-box .shop-quantity-box .qty-up {
    right: calc(var(--space-40));
}

.shop-product-offer-box .shop-quantity-box .qty-down {
    left: calc(var(--space-40));
}

@media screen and (min-width: 1140px) {
    .shop-product-offer-box .shop-quantity-box .qty-down:hover,
    .shop-product-offer-box .shop-quantity-box .qty-up:hover {
        color: var(--color-secondary);
    }
}

.product-affix-box-deco {
    position: absolute;
    z-index: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-affix-box-deco img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

/*
Koszyk
 */

.shop-basket-summary .summary-box .checkboxradio-container .form-element-option-text {
    color: var(--color-primary);
}

.shop-basket-summary .summary-box .payment-methods .form-element-container .form-element {
    padding: 15px;
}

.shop-order-login .panel-body .match-inner .text {
    font-size: 16px;
}

.shop-order-login .panel-body .form .form-element-name {
    color: var(--color-primary);
}

.shop-order-login .panel-body .form .form-control {
    border-color: rgba(0, 0, 0, .1);
}

.shop-order-login .panel.panel-default {
    border-radius: 10px;
    overflow: hidden;
}

.basket-view .order-form.form .panel-body .form-element-name {
    color: var(--color-primary);
}

.basket-view .basket-table .form-group-quantity {
    margin-bottom: 0;
}

.basket-table td.product-image {
    border-bottom: none;
}

.basket-table tbody > tr:first-child td.product-image {
    border-top: none;
}

.basket-table thead th.product-info-box {
    width: 37%;
}

.basket-table tbody td.product-info-box {
    width: unset;
}

.correct-link {
    display: flex;
    align-items: center;
    gap: 5px;
}

.subpage .mainBananer-title {
    width: 44%;
}

.header-bottom-left {
    padding-right: var(--space-25);
    flex-shrink: 0;
}

.sort-form {
    min-width: 340px;
}

/*
aside
 */
.btn-aside-toggle {
    display: none;
}

.aside-shadow {
    display: none;
}

