@import url("https://lp.al.to/libs/fonts/CentraleSans.css");
@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700&display=swap");

/* packages imports */

@import url("../packages/bootstrap-xxl/xxl-columns.css");
:root {
    /* colors */
    --color-white: #ffffff;
    --color-black: #000000;
    --color-content: #646464;
    /* x-kom */
    --color-x-blue: #0082fa;
    /* a.to */
    --color-a-violet: #96238e;
    /* radius */
    --full-radius: 99999px;
    --x-radius: 15px;
    --a-radius: 3px;
    /* breakpoints */
    --hamburger: var(--md);
    --lg: 1199.98;
    --md: 991.98;
    --sm: 767.98;
    --xs: 575.98;
    /* additional */
    --nunito: 'Nunito', sans-serif;
    --centrale: 'CentraleSansRnd', sans-serif;
    --main-font-size: 16px;
}

html {
    font-size: var(--main-font-size);
}

body {
    font-family: var(--nunito);
    color: var(--color-content);
}

img {
    -moz-user-select: -moz-none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.xlp {
    position: relative;
}

.container-fluid {
    max-width: 1920px;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h5,
h6,
.h6 {
    color: var(--color-black);
    font-weight: 300;
    padding: 0;
    margin: 0;
}

h1,
.h1 {
    font-size: 2.4rem;
}

h2,
.h2 {
    font-size: 2.2rem;
}

h3,
.h3 {
    font-size: 2rem;
}

h4,
.h4 {
    font-size: 1.8rem;
}

h5,
.h5 {
    font-size: 1.6rem;
}

h6,
.h6 {
    font-size: 1.4rem;
}

.font-weight-bold {
    font-weight: 500;
}

.btn {
    font-size: 1.2rem;
    font-weight: 600;
    padding: .4rem 2.4rem;
    border-radius: 300px;
    transition: all 200ms ease-in-out;
}

.btn.btn-light {
    background: var(--color-white);
    border: 2px solid var(--color-white);
    color: var(--color-black);
    text-decoration: none;
}

.btn.btn-light:hover {
    background: transparent;
    border: 2px solid var(--color-white);
    color: var(--color-white);
}

header {
    position: absolute;
    top: 60px;
    left: 60px;
    width: calc(100% - 120px);
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

header .logo {
    max-height: 30px;
}

header .logo.x-kom {
    max-height: 50px;
}


/* sections */

.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
    width: calc(100% - 30px);
    margin: 15px;
    border-radius: var(--x-radius);
    min-height: 720px;
    position: relative;
    overflow: hidden;
}

.hero .hero-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}


/* products */

.product-list .single-product {
    position: relative;
    overflow: hidden;
}

.product-list .step .background-icon {
    width: 50%;
    position: absolute;
    top: -10%;
    right: 0;
    filter: grayscale(1);
    opacity: .03;
}

.product-list #step-02 .background-icon {
    left: 0;
    top: 50%;
    right: inherit;
}

.product-list .step .row {
    width: 100%;
    margin: 0;
    padding: 0;
}

.product-list .single-product .product-card {
    background: var(--color-white);
    border: 2px solid #f0f0f0;
    border-radius: var(--x-radius);
    padding: 20px 20px 40px;
    width: 100%;
    overflow: hidden;
    height: 100%;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0);
    transition: all 150ms ease-in-out;
}

.product-list .single-product .product-card:hover {
    cursor: pointer;
}

.product-list .single-product .product-card .thumb {
    display: flex;
    position: relative;
    overflow: hidden;
    width: 80%;
    margin: 0 10% 20px;
    opacity: .8;
    transition: all 200ms ease-in-out;
}

.product-list .single-product .product-card .thumb:after {
    content: '';
    width: 100%;
    position: relative;
    padding-top: 100%;
}

.product-list .single-product .product-card .thumb img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-list .single-product .product-card:hover .thumb {
    opacity: 1;
}

.product-list .icon-category {
    max-width: 100px;
    max-height: 60px;
    object-fit: cover;
}

.product-list .single-product .product-card h4 {
    font-size: 1rem;
    font-weight: 600;
    padding-bottom: 10px;
    height: calc(2 * 1.35rem);
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.product-list .single-product input[type='radio'] {
    position: absolute;
    top: 10px;
    right: 10px;
    opacity: 0;
    z-index: -1;
}

.product-list .single-product input[type='radio']+.product-card .icon-checked {
    color: var(--color-white);
    transition: all 200ms ease-in-out;
    position: absolute;
    top: 15px;
    left: -60px;
    font-size: 18px;
}

.product-list .single-product input[type='radio']:checked+.product-card .icon-checked {
    color: var(--color-x-blue);
    opacity: 1;
    left: 15px;
}

.product-list .single-product input[type='radio']:checked+.product-card {
    border: 2px solid var(--color-x-blue);
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.05);
}

.product-list .single-product .product-card .action-btn {
    background: var(--color-white);
    border: 2px solid #f0f0f0;
    color: #bdbdbd;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    padding: .4rem 2.4rem;
    border-radius: 300px;
}

.product-list .single-product input[type='radio']:checked+.product-card .action-btn {
    color: var(--color-x-blue);
    border-color: var(--color-x-blue);
}

.product-list .single-product .product-card .action-btn:after {
    content: 'wybierz';
}

.product-list .single-product input[type='radio']:checked+.product-card .action-btn:after {
    content: 'wybrano';
}

.product-list .single-product input[type='radio']:checked+.product-card .thumb {
    opacity: 1;
}

.modal {
    background: rgba(255, 255, 255, .7);
    backdrop-filter: blur(2px);
}

.modal .modal-header {
    border-bottom: 0;
}

.modal .modal-dialog {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) !important;
    width: calc(100% - 30px);
    margin: 0;
}

.modal .modal-dialog .modal-content {
    border-radius: var(--x-radius);
}

footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
    width: calc(100% - 30px);
    margin: 5rem 15px;
    padding: 7.5rem 0 0;
    background: linear-gradient(180deg, rgba(248, 248, 248, 1) 0%, rgba(255, 255, 255, 1) 100%);
    border-radius: var(--x-radius);
    position: relative;
}

footer .icon-final {
    max-width: 90px;
}

footer .brand-logo {
    position: absolute;
    bottom: -60%;
    right: 0;
    opacity: .03;
    width: 90%;
}

footer ul.social-icons {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
}

footer ul.social-icons li {
    margin: 0 15px;
    list-style-type: none;
}

footer ul.social-icons li:first-child {
    margin-left: 0;
}

footer ul.social-icons li:last-child {
    margin-right: 0;
}

footer ul.social-icons li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    background: var(--color-white);
    border-radius: var(--x-radius);
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, .1);
}

footer ul.social-icons li a img {
    height: 1.3rem;
    transition: all 120ms ease-in-out;
}

footer ul.social-icons li a:hover img {
    height: 1.45rem;
}

@media (min-width: 1920.98px) {
    html {
        font-size: 18px;
    }
    .hero {
        min-height: 70vh;
    }
    h1,
    .h1 {
        font-size: calc(2.4rem * 1.4);
    }
    h2,
    .h2 {
        font-size: calc(2.2rem * 1.4);
    }
    h3,
    .h3 {
        font-size: calc(2rem * 1.4);
    }
    h4,
    .h4 {
        font-size: calc(1.8rem * 1.4);
    }
    h5,
    .h5 {
        font-size: calc(1.6rem * 1.4);
    }
    h6,
    .h6 {
        font-size: calc(1.4rem * 1.4);
    }
}


/* up to 1199.98px */

@media (max-width: 1199.98px) {}


/* up to 991.98px */

@media (max-width: 991.98px) {}


/* up to 767.98px */

@media (max-width: 767.98px) {
    header .logo {
        max-height: 23px;
    }
    header .logo.x-kom {
        max-height: 35px;
    }
    .hero {
        min-height: 540px;
    }
}


/* up to 575.98px */

@media (max-width: 575.98px) {
    html {
        font-size: 14px;
    }
    header .logo {
        max-height: 15px;
    }
    header .logo.x-kom {
        max-height: 20px;
    }
    footer ul.social-icons {
        flex-direction: row;
    }
    footer ul.social-icons li {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 15px 0;
        width: 50%;
    }
    footer ul.social-icons li a {
        width: 2.5rem;
        height: 2.5rem;
    }
    footer ul.social-icons li a img {
        height: 1rem;
    }
}

@media (max-width: 400px) {
    footer ul.social-icons {
        flex-direction: column;
    }
}

#hasDiscount{
    display: none;
}

#displayBonValue, #displayPriceValue{
    display: inline-block;
}
h4{
    padding-bottom: 0px !important;
}