
 /*--- NEW CODE ---*/

	*, *::before, *::after {
		box-sizing: border-box;
	}
	* {
		margin: 0;
	}
	html, body {
		height: 100%;
		background-color: #ffffff;
	}
	body {
		line-height: 1.6;
		-webkit-font-smoothing: antialiased;
	}
	img, picture, video, canvas, svg {
		display: block;
		max-width: 100%;
	}
	input, button, textarea, select {
		font: inherit;
	}
	p, h1, h2, h3, h4, h5, h6 {
		overflow-wrap: break-word;
	}
	input, select, textarea, button, a {
		-webkit-tap-highlight-color: rgba(0,0,0,0);
		-webkit-tap-highlight-color: transparent;
		user-select: none;
	}
	html {
		scroll-behavior: smooth;
	}
	
	/*------ blue touch ------*/
	
	input, select, textarea, button, a {
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	-webkit-tap-highlight-color: transparent;
	user-select: none;
	}
	
	:root {
		--color: #439899;
		--color-light: #00e9ee;
		--mint: #00deac;
		--blue: #00b3ff;
		--light-blue: #00e9ee;
		--gray: #b9b9b9;
		--light-gray: #e7e7e7;
		--contrast: #222222;
		--contrast-bg: #030c17;
		--bg-light: #f5f5f5;
		--more-gray: #707070;
		--finea: #0AC5B2;
		--finea-light: #3bddcd;
		--finea-more-gray:#00163E;
	}
	
	/* flex containers */
	
	.container {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
	}
	
	.container-nowrap {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
	}
	
	.container-column {
		display: flex;
		flex-direction: column;
	}
	
	.container-reverse {
		display: flex;
		flex-direction: row-reverse;
		flex-wrap: wrap;
	}
	
	.center {
		justify-content: center;
	}
	
	.start {
		justify-content: flex-start;
	}
	
	.start-icon {
		justify-content: center;
	}
	
	@media (max-width: 600px) {
		.start-icon {
		justify-content: flex-start;
	}
	}
	
	.end {
		justify-content: flex-end;
	}
	
	.content-top {
		align-content: flex-start;
	}
	
	.align-center {
		align-items: center;
	}
	
	.align-start {
		align-items: flex-start;
	}
	
	.gap {
		gap: 40px;
	}
	
	.row-gap {
		row-gap: 40px;
	}
	
	.column-gap {
		column-gap: 40px;
	}
	
	.half-gap {
		gap: 20px;
	}
	
	/* flex items */
	
	.logo {
		flex-basis: 160px;
		padding-top: 18px;
		padding-bottom: 18px;
	}
	
	.claim {
		flex-basis: auto;
		text-align: right;
	}
	
	.claim-footer {
		flex-basis: auto;
		text-align: left;
	}
	
	@media (max-width: 605px) {
		.claim {
		text-align: left;
		padding-top: 20px;
	}
	}
	
	.item {
		flex-basis: 1200px;
		padding: 20px;
	}
	.item-1240 {
		flex-basis: 1240px;
		padding: 20px;
	}
	
	.item-hero {
		flex-basis: 500px;
		padding: 20px;
	}
	
	.item-form {
		flex-basis: 570px;
		padding: 40px;
	}
	
	@media (max-width: 768px) {
		.item-form {
		padding: 10px;
	}
	}
	
	.item-auto {
		flex-basis: auto;
		padding: 20px;
	}
	
	.item-3-4 {
		flex-basis: 700px;
		padding: 20px;
	}
	
	.item-1-2 {
		flex-basis: 580px;
		padding: 20px;
	}
	
	.item-50 {
		flex-basis: 50%;
		padding: 20px;
	}
	
	/* 550 */
	
	.item-400 {
		flex-basis: 400px;
		padding: 5px;
	}
	
	.item-1-3 {
		flex-basis: 330px;
		padding: 20px;
	}
	
	@media (min-width: 600px) and (max-width: 1069px) {
		.item-1-3 {
		flex-basis: 505px;
		}
	}
	
	/* 355 */
	
	.item-1-4 {
		flex-basis: 245px;
		padding: 20px;
	}
	
	/* 255 */
	
	.item-1-6 {
		flex-basis: 150px;
		padding: 20px;
	}
	
	/* 156 */
	
	.item-1-6-half-gap {
		flex-basis: 170px;
		padding: 20px;
	}
	
	.item-inside {
		flex-basis: 100%;
	}
	
	.item-bullet {
		min-width: 28px;
	}
	
	.item-icon-left {
		min-width: 20px;
	}
	
	.item-circle-number {
		min-width: 45px;
	}
	
	.grow {
		flex-grow: 1;
	}
	
	/* typo */
		
	body, input, select {
		font-family: 'Nunito', sans-serif;
		font-size: 17px;
	}
	
	p {
		font-weight: 400;
	}
	
	p.lead {
		font-family: 'Nunito', sans-serif;
		font-size: 26px;
		font-size: clamp(19px, 3vw, 26px);
		line-height: 1.3;
	}
	
	p.lead-plus {
		font-size: 32px;
		font-size: clamp(26px, 3.5vw, 32px);
		line-height: 1.3;
	}
	
	h1, h2, h3, h4, h5, h6 {
		font-family: 'Nunito', sans-serif;
	}
	
	h1, .quote-title {
		font-weight: 700;
		font-size: 36px;
		font-size: clamp(28px, 4.6vw, 36px);
		line-height: 1.3;
	}
	
	.uppercase {
		text-transform: uppercase;
	}
	
	h2 {
		font-weight: 600;
		font-size: 34px;
		font-size: clamp(28px, 3.5vw, 34px);
		line-height: 1.3;
		padding-bottom: 20px;
	}
	
	h3 {
		font-weight: 400;
		font-size: 26px;
		font-size: clamp(24px, 2.8vw, 26px);
		line-height: 1.3;
		padding-bottom: 20px;
	}
	
	a, a:visited, a:hover, a:active {
		text-decoration: none;
	}
	
	.white-text {
		color: #ffffff;
	}
	
	.center-text {
		text-align: center;
	}
	
	.uppercase {
		text-transform: uppercase;
	}
	
	/* bg */
	
	.bg-color {
		background-color: var(--color);
	}
	
	.bg-color-light {
		background-color: var(--color-light);
	}
	
	.bg-dark {
		background: var(--contrast-bg)
	}
	
	.bg-light {
		background: var(--bg-light)
	}
	
	.bg-gray {
		background: var(--more-gray)
	}
	
	.bg-white {
		background: #ffffff;
	}
	
	.bg-black {
		background: #000000;
	}
	
	.hero {
		background-image: url(/wp-content/themes/faktura.pl/assets/ksef/img/faktura-program-benefitowy-hero.webp);
		background-repeat: no-repeat;
		background-position: top center;
		background-size: cover;
		background-color: var(--color);
		height: calc(100vh - 100px);
		min-height: 800px;
	}
	
	.footer-form {
		background-image: url(/wp-content/themes/faktura.pl/assets/ksef/img/faktura-program-benefitowy-formularz.webp);
		background-repeat: no-repeat;
		background-position: top center;
		background-size: cover;
		background-color: var(--color);
	}
	
	@media (max-width: 768px) {
	.hero, .footer-form {
		background: none;
		background-color: var(--color);
		height: auto;
		min-height: 600px;
		border-bottom: 4px solid #ffffff;
	}
	
	
	.slider .info.before {
		display: none;
	}
	
	.slider .info.after {
		display: none;
	}
	}
	
	.social-proof {
		background: url(/wp-content/themes/faktura.pl/assets/ksef/img/wlasciciel-fabryki.webp) no-repeat center -7vw;
		background-size: cover;
		min-height: 800px;
	}
	
	@media (max-width: 1024px) {
	.social-proof {
		background: none;
		background-color: var(--contrast-bg);
		min-height: 600px;
	}
	}
	
	.photo-bg-1 {
		background: url(/wp-content/themes/faktura.pl/assets/ksef/img/faktoring-01.webp) no-repeat center center;
		background-size: cover;
		height: 45vh;
		min-height: 300px;
		background-position: 50%;
	}
	
	.bg-jeden {
		background: url(/wp-content/themes/faktura.pl/assets/ksef/img/jeden.svg) no-repeat top left;
		background-size: 88px 245px;
		min-height: 245px;
	}
	
	.bg-dwa {
		background: url(/wp-content/themes/faktura.pl/assets/ksef/img/dwa.svg) no-repeat top left;
		background-size: 170px 245px;
		min-height: 245px;
	}
	
	.bg-trzy {
		background: url(/wp-content/themes/faktura.pl/assets/ksef/img/trzy.svg) no-repeat top left;
		background-size: 165px 245px;
		min-height: 245px;
	}
	
	.bg-line {
		background: url(/wp-content/themes/faktura.pl/assets/ksef/img/line-v.svg) no-repeat;
		background-size: 2px 80%;
		background-position: 62px;
		background-color: #ffffff;
	}
	
	/* design */
	
	mark {
		color: #ffffff;
		background: var(--mint);
	}
	
	.mint {
		color: var(--mint);
	}
	.blue {
		color: var(--blue);
	}
	.light-blue {
		color: var(--light-blue);
	}
	
	.bg-line-gradient {
		background: linear-gradient(100deg, #5BC7A0 7.35%, #439899 94.95%);
		border-radius: 44px;
	}
	
	.gradient-blue {
		background: hsla(212, 84%, 27%, 1);
		background: linear-gradient(90deg, hsla(212, 84%, 27%, 1) 0%, hsla(198, 100%, 50%, 1) 100%);
		background: -moz-linear-gradient(90deg, hsla(212, 84%, 27%, 1) 0%, hsla(198, 100%, 50%, 1) 100%);
		background: -webkit-linear-gradient(90deg, hsla(212, 84%, 27%, 1) 0%, hsla(198, 100%, 50%, 1) 100%);
		filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#0B407E", endColorstr="#00B3FF", GradientType=1 );
	}
	
	.gradient-mint {
		background: linear-gradient(100deg, #5BC7A0 7.35%, #439899 94.95%);
	}
	
	.gradient-light-blue {
		background: hsla(198, 100%, 50%, 1);
		background: linear-gradient(90deg, hsla(198, 100%, 50%, 1) 0%, hsla(181, 100%, 47%, 1) 100%);
		background: -moz-linear-gradient(90deg, hsla(198, 100%, 50%, 1) 0%, hsla(181, 100%, 47%, 1) 100%);
		background: -webkit-linear-gradient(90deg, hsla(198, 100%, 50%, 1) 0%, hsla(181, 100%, 47%, 1) 100%);
		filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#00B3FF", endColorstr="#00E9EE", GradientType=1 );
	}
	
	.text-with-icon {
		display: inline-flex;
		align-items: center;
		text-align: left;
		font-size: 20px;
		line-height: 1.3;
		font-weight: 600;
		padding-bottom:20px;
	}
	.text-icon {
		font-size: 1.5em;
		line-height: 0;
		padding-right: 0.5em;
	}
	
	.text-icon img {
		width: 20px;
	}
	
	
	header {
		background: var(--color);
	}
	
	.shadow {
		box-shadow: 0px 0px 20px rgb(0 0 0 / 15%);
	}
	
	.shadow-small {
		box-shadow: 0px 0px 5px rgb(0 0 0 / 20%);
	}
	
	.move-up {
		margin-top: -50px;
	}
	
	.move-up-more {
		margin-top: -65px;
	}
	
	.button {
		padding: 15px 25px;
		border-radius: 40px;
		text-align: center;
		line-height: 1.3;
		font-weight: 700;
		-webkit-transition: background-color 0.5s ease-out;
		-moz-transition: background-color 0.5s ease-out;
		-o-transition: background-color 0.5s ease-out;
		transition: background-color 0.5s ease-out;
	}
	
	.button-white-outline {
		border: 2px solid #FFFFFF;
		font-weight: 400;
		color: #ffffff;
	}
	.button-white-outline-zaloguj {
		border: 2px solid #FFFFFF;
		font-weight: 400;
		color: #ffffff;
		background-color: #ffffff32;
	}
	
	.button-mint {
		color: #009999;
		background-color: #ffffff;
	}
	
	.button-mint-outline {
		color: #009999;
		font-weight: 400;
		font-size: 0.85em;
		border: 1px solid #009999;
		background-color: #ffffff;
	}
	
	.button-blue {
		color: #00b2ff;
		background-color: #ffffff;
	}
	
	.big-button {
		padding: 15px 25px;
		font-size: 21px;
		letter-spacing: 0.01em;
	}
	
	.color-button {
		background-color: var(--color);
	}

	.zaloguj-button {
		background-color: #246a45;
	}
	
.color-button:hover {
		background-color: var(--mint);
	}

.button-mint-outline:hover, .button-white-outline-zaloguj:hover {
		background-color: var(--mint);
		color:#ffffff;
		border-color: var(--mint);
	}
	
	.black-button {
		color: #ffffff;
		background-color: #000000;
	}
	
	.white-button {
		color: var(--color);
		background-color: #ffffff;
	}
	
	a.black-button:visited, a.black-button:active,
	a.color-button:visited,a.color-button:active,
	a.button-white-outline:visited, a.button-white-outline:active {
		text-decoration: none;
		color: #ffffff;
	}
	
	a.white-button:visited, 
	a.white-button:active {
		color: var(--color);
	}
	
	a.black-button:hover {
		background-color: #ffffff;
		color: #000000;
	}
	
	a.white-button:hover, a.button-mint:hover, a.button-blue:hover {
		background-color: var(--mint);
		color: #000000;
	}
	
	a.button-white-outline:hover {
		background-color: var(--mint);
		color: #ffffff;
	}
	
	.left-border-box {
		border-left: 3px solid var(--gray);
		padding: 10px 10px 10px 40px;
	}
	
	.box-outline {
		border: 2px solid var(--color);
		border-radius: 44px;
	}
	
	.bubble {
		background: var(--color);
		padding: 40px;
	}
	
	.bubble-text {
		font-size:32px;
		font-size: clamp(24px, 4vw, 32px);
		line-height: 1.3;
	}
	
	.big-bubble-text {
		font-size: 90px;
		font-size: clamp(50px, 8vw, 90px);
		line-height: 1.1;
		font-family: 'Nunito', sans-serif;
		font-weight: 600;
		padding-bottom: 40px;
	}
	
	.illustration {
		margin-left: -60px;
		padding-top: 0;
		flex-basis: 590px;
	}
	
	#bottom-bar {
		position: fixed;
		bottom: -300px;
		width: 100%;
		display: flex;
		transition: bottom 0.4s;
	}
	
	.bar-text {
		justify-content: flex-end; 
		padding: 0;
	}
	
	@media (max-width: 1024px) {
		.bar-text {
		justify-content: center; 
		text-align: center;
		padding: 0;
		}
		.bar-button {
		justify-content: center;
		}
	}
	
	#footer a {
		color: #ffffff;
	}
	
	.box-text {
		line-height: 1.3;
	}
	
	.social-proof-text {
		justify-content: flex-end;
	}
	
	.hero-img-mobile {
		display: none;
	}
	
	
	@media (max-width: 768px) {
	.hero-img-mobile {
		display: flex;
	}
	.cw-buttons a.button-white-outline{
		margin: 0;
	}
	}
	
	
	@media (max-width: 1024px) {
	.social-proof-text {
		justify-content: center;}
	.social-proof-text .item-1-2 {
		flex-basis: 800px;}
	.social-proof-mobile {
		display: flex;
		padding: 0 40px;}
	.social-proof-mobile img {
		border-radius: 20px;}
	.move-up, .move-up-more {
		margin-top: 0;
	}
	}
	
	.circle-number {
		font-size: 1.2em;
		line-height: 1.2em;
		font-family: 'Nunito', sans-serif;
		font-weight: 600;
		background-color: var(--finea);
		padding: 10px;
		border-radius: 50%;
		width: 45px;
		height: 45px;
		text-align: center;
	}
	
	.efaktor .circle-number {
		background-color: var(--color);
	}
	
	.steps {
		padding: 0 40px 40px 40px;
	}
	
	.form-padding {
		padding: 30px 40px 0 40px;
	}
	
	@media (max-width: 500px) {
	.steps {padding: 0 0 40px 0;}
	.form-padding {padding: 30px 5px 0 5px;}
	}
	
	/* Accordion styles */
	.cb-tabs {
	  overflow: hidden;
	  width: 100%;
	}

    .cb-tabs input{
        opacity: 0;
	    z-index: -1; 
        display: none;
    }    
	
	.cb-tab {
	  width: 100%;
	  color: white;
	  overflow: hidden;
	  border-bottom: 1px solid #ffffff;
	}
	
	.cb-tab input {
		height: 0px;
	}
	
	.cb-tab-more {
		width: 100%;
		color: var(--contrast);
		overflow: hidden;
		border-bottom: 1px solid #ffffff;
	  }
	
	.cb-tab-label {
	  display: flex;
	  justify-content: space-between;
	  padding: 1em;
	  font-weight: 700;
	  cursor: pointer;
	  /* Icon */
	}
	.cb-tab-label:hover {
	  background: var(--mint);
	}
	.cb-tab-label::after {
	  content: "❯";
	  width: 1em;
	  height: 1em;
	  text-align: center;
	  transition: all 0.35s;
	}
	.cb-tab-label-border{
		border: 2px var(--mint) solid;
    	border-radius: 20px;
    	margin-top: 20px;		
	}	
	.cb-tab-content {
	  max-height: 0;
	  padding: 0 1em;
	  color: var(--contrast);
	  background: white;
	  border-radius: 10px;
	  transition: all 0.35s;
	}
	
	.cb-tab-content p, .cb-tab-content li {
		margin-top: 20px;
	}
	
	
	input:checked + .cb-tab-label {
	  background: none;
	}
	input:checked + .cb-tab-label::after {
	  transform: rotate(90deg);
	}
	input:checked ~ .cb-tab-content {
	  max-height: 300vh;
	  padding: 1em;
	  margin: 1em 0;
	}
	/* accordion end */
	
	/* space */
	
	.space-up {
		padding-top: 40px;
	}
	
	.half-space-up {
		padding-top: 20px;
	}
	
	.space-up-plus {
		padding-top: 60px;
	}
	
	.space-down {
		padding-bottom: 40px;
	}
	
	.half-space-down {
		padding-bottom: 20px;
	}
	
	.space-down-plus {
		padding-bottom: 60px;
	}
	
	.no-space {
		padding: 0;
	}
	.bullet-text {
		padding-top: 0.12em;
		text-align: left;
		font-size: 20px;
		line-height: 1.3;
		font-weight: 600;
	}
	
	/* form */
	
	input:not([type="checkbox"]) {
		display: block;
		width: 100%;
		height: 50px;
		padding: 10px;
	}
	
	.form-control.reverse {
		background: #ffffff;
		border: 2px solid var(--mint);
		border-radius: 40px;
	}
	
	.form-control.reverse:focus, .form-control.reverse:active {
		background: #ffffff;
		border-color: #FFFFFF;
	}
	
	input.error {
		border: 1px red solid !important;
	}
	
	input[type="checkbox"].error+label {
		color: red;
	}
	
	input[type="submit"] {
		border: none;
		cursor: pointer;
	}
	
	input[type=text] {
		-webkit-transition: 0.3s;
		transition: 0.3s;
		transition-timing-function: ease;
		outline: none;
	}
	
	input[type=text]:focus {
		box-shadow: 0px 0px 0px 3px rgb(0 207 158 / 55%);
	}
	
	.submit-button {
		color: #ffffff;
		background-color: var(--mint);
	}
	
	.submit-button:hover {
		color: #ffffff;
		background-color: var(--color-light);
	}
	
	.zgoda {
		font-size: 0.8em;
		line-height: 1.0;
		user-select: none;
	}
	
	
	
	
	
	label {
		position: relative;
		padding-left: 30px;
	}
	
	.tooltip {
		position: relative;
		display: inline-block;
		color: #ffffff;
		text-decoration: underline;
		font-weight: 600;
	}
	
	.tooltip .tooltiptext {
		visibility: hidden;
		width: 160px;
		background-color: var(--contrast-bg);
		color: #fff;
		text-align: center;
		border-radius: 8px;
		padding: 8px 5px;
		position: absolute;
		z-index: 1;
		bottom: 125%;
		left: 50%;
		margin-left: -80px;
		opacity: 0;
		transition: opacity 0.3s;
	}
	
	.tooltip .tooltiptext::after {
		content: "";
		position: absolute;
		top: 100%;
		left: 50%;
		margin-left: -5px;
		border-width: 5px;
		border-style: solid;
		border-color: var(--contrast-bg) transparent transparent transparent;
	}
	
	.tooltip:hover .tooltiptext {
		visibility: visible;
		opacity: 1;
	}
	
	.slider {
		position: relative;
		height: 1rem;
		border-radius: 20px;
		margin-top: 1.25rem;
		margin-bottom: 2.25rem;
		background-color: #e6e6e6;
		cursor: pointer;
		-webkit-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
		user-select: none;
		touch-action: none;
		margin-top: 120px;
		margin-bottom: 70px;
		background-color: #F1F1F1;
	
		width: 100%;
	}
	
	.slider .edge.min {
		left: -36px;
	}
	
	.slider .edge {
		width: 36px;
		height: 36px;
		border-radius: 18px;
		border: 1px solid #E0E0E0;
		background-color: #F8F8F8;
		position: absolute;
		top: -15px;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		font-weight: 600;
		font-size: 12px;
		color: #224064;
	}
	
	.slider .edge.max {
		right: -36px;
	}
	
	.slider-handle {
		position: absolute;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
		left: 0;
		z-index: 1;
		display: inline-block;
		transition: all 0.2s ease-in-out;
		touch-action: manipulation;
		width: 35px;
		height: 35px;
		border-radius: 25px;
		background: #F1F1F1;
		top: 50%;
		box-sizing: border-box;
		background: #ffd100;
		box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
	}
	
	.slider-fill {
		position: absolute;
		top: 0;
		left: 0;
		border-radius: 20px;
		display: inline-block;
		max-width: 100%;
		height: 1rem;
		transition: all 0.2s ease-in-out;
		background-color: #FFD800;
	}
	
	.slider .slider-drop input:disabled {
		cursor: pointer;
	}
	
	.slider .slider-drop input {
		text-align: center;
		color: #000000;
		background-color: unset;
		border: none;
		width: 42px;
		height: 40px;
		font-weight: 600;
		font-size: 20px;
		pointer-events: none;
	}
	
	span.slider-handle:focus {
		outline: none !important;
	}
	
	.slider .slider-drop {
		position: absolute;
		display: flex;
		top: -103px;
		left: -181%;
		border-radius: 8.15423px;
		width: 160px;
		height: 80px;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		background: #FFFFFF;
		box-shadow: 0px 8.15423px 13.5904px rgba(0, 0, 0, 0.15);
		align-content: center;
	}
	
	span.slider-drop::before {
		content: "";
		width: 15px;
		height: 15px;
		position: absolute;
		bottom: -7px;
		transform: rotate(45deg);
		background: #fff;
	}
	
	.slider .info {
		position: absolute;
		font-family: 'Nunito', sans-serif;
		font-style: normal;
		font-weight: 400;
		font-size: 18px;
		line-height: 22px;
		color: #000000;
	}
	
	.slider .info.before {
		bottom: -30px;
		left: 0;
	}
	
	.slider .info.after {
		bottom: -30px;
		right: 0px;
	}
	
	.form-max-width {
		max-width: 950px;
		margin-right: auto;
		margin-left: auto;
	}
	
	
	#pb_loader {
		position: fixed;
		width:  96px;
		height: 96px;
		left:  50%;
		top: 50%;
		transform: translate(-50%, -50%);
		background-color: rgba(255,255,255,0.9);
		box-shadow: 0px 24px 64px rgba(0,0,0,0.24);
		border-radius:16px;
		opacity: 0; 
		visibility: hidden;
		transition: opacity .2s ease-out, visibility 0s linear .2s;
		z-index:1000;
	}
	
	#pb_loader.fullscreen {
		padding:  0;
		left:  0;
		top:  0;
		width:  100%;
		height: 100%;
		transform: none;
		background-color: #fff;
		border-radius: 0;
		box-shadow: none;
	}
	
	#pb_loader.show {
		transition: opacity .4s ease-out, visibility 0s linear 0s;
		visibility: visible;
		opacity: 1;
	}
	
	#pb_loader .circular {
	  animation: loader-rotate 2s linear infinite;
	  position: absolute;
	  left:  calc(50% - 24px);
	  top:  calc(50% - 24px);
	  display: block;
	  transform: rotate(0deg);
	}
	
	#pb_loader .path {
	  stroke-dasharray: 1, 200;
	  stroke-dashoffset: 0;
	  animation: loader-dash 1.5s ease-in-out infinite;
	  stroke-linecap: round;
	}
	
	@keyframes loader-rotate {
	  100% {
		transform: rotate(360deg);
	  }
	}
	
	@keyframes loader-dash {
	  0% {
		stroke-dasharray: 1, 200;
		stroke-dashoffset: 0;
	  }
	  50% {
		stroke-dasharray: 89, 200;
		stroke-dashoffset: -35px;
	  }
	  100% {
		stroke-dasharray: 89, 200;
		stroke-dashoffset: -136px;
	  }
	}
	
	.checkmark {
		background-color: #FFFFFF;
		position: absolute;
		border: 1px solid #0E366C;
		height: 20px;
		width: 20px;
		left: 0;
		top: -3px;
		border-radius: 16px;
	  }
	  
	  input:checked ~ span.checkmark::after {
		display: block;
	  }
	  input:checked ~ .checkmark::after {
		content: "";
		display: none;
		position: absolute;
		width: 60%;
		height: 60%;
		margin: auto;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		background: url("/wp-content/themes/faktura.pl/assets/ksef/img/check.svg") no-repeat center/cover;
	  }
	
	  .visually-hidden {
		position: absolute;
		left: -100vw;
	 }
	
	 .help-block{
		color: var(--mint);
	 }
	
	 .cw-form-success{
		color: var(--mint);
		text-align: center;
		font-weight: 700;
		border: 2px var(--mint) solid;
		padding: 10px;
		margin: 20px 0px 10px 0px;
	 }	

     #menu-item-2017{
        display: none;
     }
	@media (max-width: 767px) {
		.gap {
			gap: 20px;
		}
		.space-up {
			padding-top: 20px;
		}
		.space-down {
			padding-bottom: 20px;
		}
	}	 


.pristine-error {
	font-size: 0.8em;
	color: red;
	margin-bottom: 8px;
}

.cw-acceptance-wrapper .pristine-error {
	margin-top: 0px !important;
	margin-bottom: 0px !important;
}

.has-danger label {
	color: red;
}

.cw-tooltip {
	position: relative;
	display: inline-block;
	text-decoration: underline;
	font-weight: 600;
}

.cw-tooltip .tooltiptext {
	font-weight: normal;
	visibility: hidden;
	width: 160px;
	background-color: #000000;
	color: #fff;
	text-align: center;
	border-radius: 8px;
	padding: 8px 5px;
	position: absolute;
	z-index: 1;
	bottom: 125%;
	left: 50%;
	margin-left: -80px;
	opacity: 0;
	transition: opacity 0.3s;
}

.cw-tooltip .tooltiptext::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: #000000 transparent transparent transparent;
}

.cw-tooltip:hover .tooltiptext {
	visibility: visible;
	opacity: 1;
}

.cw-flex{
	display: flex;
}

@media (max-width: 767px) {
	.cw-flex {
		flex-direction: column;
	}
}	

.cw-gap-x-16{
	column-gap: 16px;
}	

.cw-text-center{
	text-align: center;
}

.cw-input{
    border-bottom: 1px black solid;
    border-top: none;
    border-left: none;
    border-right: none;	
}

.cw-input::placeholder{
	font-size: 1rem;
}	

input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=text]:focus-visible,
input[type=email]:focus-visible,
input[type=password]:focus-visible {
	box-shadow: none;
	outline: none;
}

.cw-checkbox{
	font-size: 0.8rem;
	margin-top: 30px;
	margin-bottom: 30px;
}

.cw-checkbox label{
	padding: 0;
}

.cw-submit{
	display: inline;
    padding: 22px 24px;
    border-radius: 11px;
    line-height: 17px;	
    background: radial-gradient(91.66% 306.32% at 0% 16.18%, #01CC9D 0%, #019A9A 100%);
    border: 0px solid #019A9A;	
	color: #ffffff;
	text-transform: uppercase;
}

.cw-submit:hover{
	filter: brightness(1.1);
	cursor: pointer;
}	

@keyframes spin {
    from {
        transform:rotate(0deg);
    }
    to {
        transform:rotate(360deg);
    }
}

#success-popup{
	display: none;
}	

.success-popup{
	background-color: rgb(161 238 220 / 0.9);
	overflow-x: hidden;
	overflow-y: auto;
	justify-content: center;
	align-items: center;
	height: 100%;
	display: flex;
	z-index: 50;
	top: 0px;
	right: 0px;
    left: 0px;
	position: fixed;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.popup-close{
	background-color: transparent;
}

.popup-close:hover{
	background-color: rgb(161 238 220 / 1);
	cursor: pointer;
}

header{
	background-image: radial-gradient(200px 100px at max(50% - 630px, 7vw) 0%, #00CF9E 0%, #009A9A 100%);	
}

.header-wrapper{
	padding-block: calc(0.25rem * 6);
	padding-inline: calc(0.25rem * 6);
	max-width: 1200px;
	margin-inline: auto;
	width: 100%;
}

.header-wrapper-flex{
	row-gap: calc(0.25rem * 6);
	justify-content: space-between;
	align-items: center;
	display: flex;
}	

@media (max-width: 767px) {
	.header-wrapper-flex {
		flex-direction: column;
	}
}	

.header-wrapper-buttons{
	column-gap: calc(0.25rem * 4);
	display: flex;
}

.header-login{
    color: white;
	padding-block: calc(0.25rem * 2.5);
	padding-inline: calc(0.25rem * 8);
	background-color: #69b9b9;
	border-color: #99cecd;
	border-style: solid;
    border-width: 1px;		
	border-radius: 0.25rem;
}

.header-login:hover{
	background-color: #ffffff48;
}

.header-account{
	color: white;
	padding-block: calc(0.25rem * 2.5);
	padding-inline: calc(0.25rem * 8);
	background-color: #009a9a;
	border-color: #69b9b9;
	border-style: solid;
    border-width: 1px;
	border-radius: 0.25rem;
}

.header-account:hover{
	background-color: #ffffff48;
}	

.transition {
    transition: background-color 0.3s ease;
}