/* 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 */
	--main-font-size: 16px;
}

img {
	-moz-user-select: -moz-none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	-o-user-select: none;
	user-select: none;
}

.xlp {
	position: relative;
	overflow: hidden;
}

.container-fluid {
	max-width: 1920px;
}

html,
body {
	font-family: 'Instrument Sans', sans-serif !important ;
	scroll-behavior: smooth;
}

body {
	background-color: #120e20 !important;
	color: #fff;
}

.font-weight-bold {
	font-weight: 500;
}

.btn {
	font-size: 1.2rem;
	font-weight: 600;
	padding: 0.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;
	height: 100%;
}

.product-list .single-product label {
	display: flex;
	flex-direction: column;
}

.product-list .single-product h3 {
	color: #fff;
	font-size: 1.4rem;
	font-weight: 200;
}

.product-list .step .background-icon,
.background-icon {
	width: 30%;
	position: absolute;
	top: -10%;
	right: 0;
	filter: grayscale(1);
	opacity: 0.03;
}
.step h3 {
	color: fff;
}

.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: #1d1044;
	border: 2px solid #8250fa;
	border-radius: var(--x-radius);
	padding: 0 16px 32px 16px;
	width: 100%;
	height: 100%;
	box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0);
	transition: all 150ms ease-in-out;
	color: fff;
}
.product-list .single-product .product-card h3,
.product-list .single-product .product-card h4 {
	color: fff;
}

.product-list .single-product .product-card:hover {
	cursor: pointer;
	border: 2px solid #8250fa;
}

.product-list .single-product .product-card .thumb {
	display: flex;
	position: relative;
	width: 80%;
	margin: 16px auto 0 auto;
	transition: all 200ms ease-in-out;
	margin-bottom: 24px;
}

.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: 90%;
	height: 80%;
	object-fit: cover;
	border-radius: 16px;
}

.product-list .single-product .product-card:hover .action-btn {
	background: #e6e6e6;
	color: #000;
	border: 1px solid #e6e6e6;
}

.product-list .icon-category {
	width: auto;
	max-height: 100px;
	object-fit: cover;
}

.product-list .single-product .product-card h4 {
	font-size: 1.3rem;
	font-weight: 400;
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	color: #fff;
	margin-bottom: 4px;
}

.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 {
	box-shadow: none;
	background: rgb(130, 80, 250);
	background: linear-gradient(180deg, rgba(130, 80, 250, 1) 0%, rgba(29, 16, 68, 1) 100%);
	border: 2px solid #8250fa;
}

.product-list .single-product .product-card .action-btn {
	background: #fff;
	border: 1px solid #fff;
	color: #000;
	text-decoration: none;
	font-size: 1rem;
	font-weight: 400;
	padding: 0.4rem 0;
	border-radius: 8px;
	transition: 0.1s ease-in-out;
	display: inline;
	width: 156px;
	margin: auto auto 0 auto;
}

.product-list .single-product input[type='radio']:checked + .product-card .action-btn {
	background: #fff;
	color: black;
}

.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, 0.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 {
	z-index: 1;
	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: #1d1044;
	border-radius: var(--x-radius);
	position: relative;
}

footer .icon-final {
	max-width: 90px;
}

footer .brand-logo {
	position: absolute;
	bottom: -60%;
	right: 0;
	left: 0;
	margin: 0 auto;
	opacity: 0.03;
	width: 40%;
}

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, 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;
}

/* 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;
	}
}

#hasDiscount {
	display: none;
}

#displayBonValue,
#displayPriceValue {
	display: inline-block;
}
h4 {
	padding-bottom: 0px !important;
}

/* Typography */
h1 {
	font-weight: 300;
	font-size: 1.6rem !important;
}

@media (min-width: 992px) {
	h1 {
		font-size: 1.8rem !important;
	}
}

h2 {
	margin-bottom: 60px;
}

@media (min-width: 992px) {
	h2 {
		font-size: 1.7rem;
	}
}

h3 {
	font-weight: 600;
	color: #fff;
}

@media (min-width: 992px) {
	h3 {
		font-size: 1.4rem;
	}
}

@media (min-width: 992px) {
	h4 {
		font-size: 1.2rem;
	}
}

.top__wrapper--2 {
	background: #fafbff;
	background-image: url('../img/bg-mobile.jpg?v=2.0');
}
.top {
	position: relative;
	overflow: hidden;
	border-radius: 0 0 16px 16px;
	max-width: 1920px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 0;
}

.top__wrapper {
	background-size: cover;
	background-position: 50% 100%;
	border-radius: 0 0 16px 16px;
	width: 100%;
	padding: 100px 0 264px 0;
	margin: 0 auto;
	display: flex;

	min-height: 560px;
	color: black;
}
.top__wrapper h1 {
	color: #fff;
}

@media (min-width: 576px) {
	.top__wrapper {
		padding: 132px 0 364px 0;
		min-height: 640px;
	}
}

@media (min-width: 768px) {
	.top__wrapper {
		padding: 100px 0 200px 0;
		background-image: url('../img/bg.jpg?v=2.0');
		min-height: 850px;
		background-position: 75% bottom;
	}
}

@media (min-width: 1350px) {
	.top__wrapper {
		align-items: center;
	}
}

.top__copy {
	display: flex;
}

@media (min-width: 768px) {
	.top__copy {
		margin-top: 32px;
	}
}

.top__copy h2 {
	font-weight: 200;
	font-size: 1.5rem;
	color: #fff;
	margin-bottom: 10px;
}

.top__copy--center {
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: #fff;
}

.top__copy--left {
	flex-direction: column;
	align-items: flex-start;
	text-align: left;
	color: #fff;
}

@media (max-width: 768px) {
	.top__copy--left {
		padding-top: 40px;
	}
}

a {
	color: inherit;
	text-decoration: none !important;
}

a:hover {
	color: inherit;
}

.cta {
	border-radius: 8px;
	font-size: 1rem !important;
	font-weight: 300;
	border: none;
	width: fit-content;
	height: 40px;
	padding: 0 24px;
	font-size: 1.1rem !important;
	display: flex;
	align-items: center;
	transition: 0.3s;
	background: #0082fa;
	color: #fff;
	margin-top: 10px;
}

.cta:hover {
	background: #0067c7;
	color: #fff;
}

.cta:active {
	background: #004d94;
	color: #fff;
}

.cta--white {
	background: #fff;
	color: #000;
}

.cta--white:hover {
	background: #e6e6e6;
	color: #000;
}

.cta--white:active {
	background: #cccccc;
	color: #000;
}

.cta--big {
	height: 48px;
	padding: 0 34px;
	font-size: 1.2rem !important;
}

.header {
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 100;
	margin-top: 0;
	overflow: hidden;
}

.header__logos-wrapper {
	height: auto;
	width: 100%;
	padding: 20px 25px 20px 16px !important;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 0px;
	flex-direction: column;
}

@media (min-width: 768px) {
	.header__logos-wrapper {
		padding: 32px 32px 32px 22px !important;
		flex-direction: row;
		gap: 12px;
	}
}

.logos-wrapper {
	display: flex;
	align-items: center;
	gap: 12px;
}

@media (min-width: 576px) {
	.logos-wrapper {
		gap: 32px;
	}
}

.header #brand {
	height: 24px;
	transition: 0.3s;
	z-index: 1;
	position: relative;
	margin-left: 16px;
}
@media (min-width: 576px) {
	.header #brand {
		height: 42px;
		margin-left: 0;
	}
}

.header #brand:hover {
	opacity: 0.9;
}

#vendor-1 {
	max-width: 100%;
	object-fit: contain;
	width: 80px;
}

#vendor-2 {
	max-width: 100%;
	object-fit: contain;
	width: 180px;
}

@media (min-width: 576px) {
	#vendor-1 {
		width: 160px;
	}

	#vendor-2 {
		width: 320px;
	}
}

strong {
	font-weight: 600 !important;
}

h1 {
	font-weight: 300 !important;
}

footer {
	margin-bottom: 0;
	background-color: #1d1044;
}

footer h3 {
	color: #fff !important;
	font-weight: 300 !important;
}

footer p {
	color: #fff;
	opacity: 0.5;
}

#displayPriceValue,
#displayBonValue {
	color: #fff !important;
	opacity: 1;
	font-weight: 600;
}

.promo-code {
	display: inline-block;
	padding: 4px 12px;

	border-radius: 8px;
	color: white;
	border: 1px solid white;
	margin: 0 4px;
	font-weight: 500;
}

.mb-4-old span {
	text-decoration: line-through;
}

.mb-4-old {
	font-size: 15px !important;
	padding-bottom: 10px;
}
.mb-4-new {
	font-weight: 600 !important;
	font-size: 1.8rem !important;
	margin-bottom: 10px;
}
