/**
 * Base CSS used by the builder's layout, including rows
 * and columns. Any module specific global CSS should be
 * included in fl-builder-layout-modules.css.
 */

/* Grid
------------------------------------------------------ */

.fl-builder-content *,
.fl-builder-content *:before,
.fl-builder-content *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.fl-row:before,
.fl-row:after,
.fl-row-content:before,
.fl-row-content:after,
.fl-col-group:before,
.fl-col-group:after,
.fl-col:before,
.fl-col:after,
.fl-module:not([data-accepts]):before,
.fl-module:not([data-accepts]):after,
.fl-module-content:before,
.fl-module-content:after {
	display: table;
	content: " ";
}
.fl-row:after,
.fl-row-content:after,
.fl-col-group:after,
.fl-col:after,
.fl-module:not([data-accepts]):after,
.fl-module-content:after {
	clear: both;
}
.fl-clear {
	clear: both;
}

/* Rows
------------------------------------------------------ */

.fl-row,
.fl-row-content {
	margin-left: auto;
	margin-right: auto;
	min-width: 0;
}
.fl-row-content-wrap {
	position: relative;
}

/* Photo Bg */
.fl-builder-mobile .fl-row-bg-photo .fl-row-content-wrap {
	background-attachment: scroll;
}

/* Video and Embed Code Bg */
.fl-row-bg-video,
.fl-row-bg-video .fl-row-content,
.fl-row-bg-embed,
.fl-row-bg-embed .fl-row-content {
	position: relative;
}

.fl-row-bg-video .fl-bg-video,
.fl-row-bg-embed .fl-bg-embed-code {
	bottom: 0;
	left: 0;
	overflow: hidden;
	position: absolute;
	right: 0;
	top: 0;
}

.fl-row-bg-video .fl-bg-video video,
.fl-row-bg-embed .fl-bg-embed-code video {
	bottom: 0;
	left: 0px;
	max-width: none;
	position: absolute;
	right: 0;
	top: 0px;
}
.fl-row-bg-video .fl-bg-video video {
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
}
.fl-row-bg-video .fl-bg-video iframe,
.fl-row-bg-embed .fl-bg-embed-code iframe {
	pointer-events: none;
	width: 100vw;
  	height: 56.25vw; /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
  	max-width: none;
  	min-height: 100vh;
  	min-width: 177.77vh; /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
  	position: absolute;
  	top: 50%;
  	left: 50%;
	-ms-transform: translate(-50%, -50%); /* IE 9 */
	-webkit-transform: translate(-50%, -50%); /* Chrome, Safari, Opera */
  	transform: translate(-50%, -50%);
}
.fl-bg-video-fallback {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
	bottom: 0px;
	left: 0px;
	position: absolute;
	right: 0px;
	top: 0px;
}

/* Slideshow Bg */
.fl-row-bg-slideshow,
.fl-row-bg-slideshow .fl-row-content {
	position: relative;
}
.fl-row .fl-bg-slideshow {
	bottom: 0;
	left: 0;
	overflow: hidden;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 0;
}
.fl-builder-edit .fl-row .fl-bg-slideshow * {
	bottom: 0;
	height: auto !important;
	left: 0;
	position: absolute !important;
	right: 0;
	top: 0;
}

/* Row Bg Overlay */
.fl-row-bg-overlay .fl-row-content-wrap:after {
	border-radius: inherit;
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 0;
}
.fl-row-bg-overlay .fl-row-content {
	position: relative;
	z-index: 1;
}

/* Full Height Rows */
.fl-row-default-height .fl-row-content-wrap,
.fl-row-custom-height .fl-row-content-wrap {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	min-height: 100vh;
}
.fl-row-overlap-top .fl-row-content-wrap {
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -moz-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	width: 100%;
}
.fl-row-default-height .fl-row-content-wrap,
.fl-row-custom-height .fl-row-content-wrap {
	min-height: 0;
}

.fl-row-default-height .fl-row-content,
.fl-row-full-height .fl-row-content,
.fl-row-custom-height .fl-row-content {
  -webkit-box-flex: 1 1 auto;
  	 -moz-box-flex: 1 1 auto;
  	  -webkit-flex: 1 1 auto;
  		  -ms-flex: 1 1 auto;
  			  flex: 1 1 auto;
}
.fl-row-default-height .fl-row-full-width.fl-row-content,
.fl-row-full-height .fl-row-full-width.fl-row-content,
.fl-row-custom-height .fl-row-full-width.fl-row-content {
	max-width: 100%;
	width: 100%;
}

/* Full height align center */
.fl-row-default-height.fl-row-align-center .fl-row-content-wrap,
.fl-row-full-height.fl-row-align-center .fl-row-content-wrap,
.fl-row-custom-height.fl-row-align-center .fl-row-content-wrap {
	-webkit-align-items: center;
	-webkit-box-align: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-align: center;
	-ms-flex-pack: center;
	justify-content: center;
	align-items: center;
}

/* Full height align bottom */
.fl-row-default-height.fl-row-align-bottom .fl-row-content-wrap,
.fl-row-full-height.fl-row-align-bottom .fl-row-content-wrap,
.fl-row-custom-height.fl-row-align-bottom .fl-row-content-wrap {
	-webkit-align-items: flex-end;
	-webkit-justify-content: flex-end;
	-webkit-box-align: end;
	-webkit-box-pack: end;
	-ms-flex-align: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	align-items: flex-end;
}

/* Column Groups
------------------------------------------------------ */
.fl-col-group-equal-height {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}
.fl-col-group-equal-height.fl-col-group-has-child-loading {
	flex-wrap: nowrap;
}
.fl-col-group-equal-height .fl-col,
.fl-col-group-equal-height .fl-col-content {
	display: flex;
	flex: 1 1 auto;
}
.fl-col-group-equal-height .fl-col-content {
	flex-direction: column;
	flex-shrink: 1;
	min-width: 1px;
	max-width: 100%;
	width: 100%;
}
.fl-col-group-equal-height:before,
.fl-col-group-equal-height .fl-col:before,
.fl-col-group-equal-height .fl-col-content:before,
.fl-col-group-equal-height:after,
.fl-col-group-equal-height .fl-col:after,
.fl-col-group-equal-height .fl-col-content:after{
	content: none;
}

/* Equal height align top */
.fl-col-group-nested.fl-col-group-equal-height.fl-col-group-align-top .fl-col-content,
.fl-col-group-equal-height.fl-col-group-align-top .fl-col-content {
	justify-content: flex-start;
}

/* Equal height align center */
.fl-col-group-nested.fl-col-group-equal-height.fl-col-group-align-center .fl-col-content,
.fl-col-group-equal-height.fl-col-group-align-center .fl-col-content {
	justify-content: center;
}

/* Equal height align bottom */
.fl-col-group-nested.fl-col-group-equal-height.fl-col-group-align-bottom .fl-col-content,
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-col-content {
	justify-content: flex-end;
}

.fl-col-group-equal-height.fl-col-group-align-center .fl-col-group {
	width: 100%;
}

/* Columns
------------------------------------------------------ */

.fl-col {
	float: left;
	min-height: 1px;
}

/* Column Bg Overlay */
.fl-col-bg-overlay .fl-col-content {
	position: relative;
}
.fl-col-bg-overlay .fl-col-content:after {
	border-radius: inherit;
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 0;
}
.fl-col-bg-overlay .fl-module {
	position: relative;
	z-index: 2;
}

/* Templates
------------------------------------------------------ */

.single:not(.woocommerce).single-fl-builder-template .fl-content {
	width: 100%;
}

/* Shapes & Patterns
------------------------------------------------------- */
.fl-builder-layer {
	position: absolute;
	top:0;
	left:0;
	right: 0;
	bottom: 0;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
}
.fl-builder-shape-layer {
	z-index: 0;
}
.fl-builder-shape-layer.fl-builder-bottom-edge-layer {
	z-index: 1;
}
.fl-row-bg-overlay .fl-builder-shape-layer {
	z-index: 1;
}
.fl-row-bg-overlay .fl-builder-shape-layer.fl-builder-bottom-edge-layer {
	z-index: 2;
}
.fl-row-has-layers .fl-row-content {
	z-index: 1;
}
.fl-row-bg-overlay .fl-row-content {
	z-index: 2;
}

.fl-builder-layer > * {
	display: block;
	position: absolute;
	top:0;
	left:0;
	width: 100%;
}
.fl-builder-layer + .fl-row-content {
	position: relative;
}
.fl-builder-layer .fl-shape {
	fill: #aaa;
	stroke: none;
	stroke-width: 0;
	width:100%;
}
/**
Fix ipad parallax issue on safari
https://core.trac.wordpress.org/ticket/48802
https://core.trac.wordpress.org/ticket/49285
https://github.com/WordPress/gutenberg/issues/17718
*/
@supports (-webkit-touch-callout: inherit) {
  .fl-row.fl-row-bg-parallax .fl-row-content-wrap,
  .fl-row.fl-row-bg-fixed .fl-row-content-wrap {
    background-position: center !important;
    background-attachment: scroll !important;
  }
}

@supports (-webkit-touch-callout: none) {
	.fl-row.fl-row-bg-fixed .fl-row-content-wrap {
		background-position: center !important;
		background-attachment: scroll !important;
	}
}
/**
 * Base CSS used by all (or many) modules. This file should
 * not contain any generic layout CSS that doesn't apply to
 * modules. That belongs in fl-builder-layout.css.
 */

/* Utilities
------------------------------------------------------ */

.fl-clearfix:before,
.fl-clearfix:after {
	display: table;
	content: " ";
}
.fl-clearfix:after {
	clear: both;
}
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0,0,0,0);
	white-space: nowrap;
	border: 0;
}

/* Buttons
------------------------------------------------------ */

.fl-builder-content .fl-button:is(a, button),
.fl-builder-content a.fl-button:visited {
	border-radius: 4px;
	display: inline-block;
	font-size: 16px;
	font-weight: normal;
	line-height: 18px;
	padding: 12px 24px;
	text-decoration: none;
	text-shadow: none;
}
.fl-builder-content .fl-button:hover {
	text-decoration: none;
}
.fl-builder-content .fl-button:active {
	position: relative;
	top: 1px;
}
.fl-builder-content .fl-button-width-full .fl-button {
	width: 100%;
	display: block;
	text-align: center;
}
.fl-builder-content .fl-button-width-custom .fl-button {
	display: inline-block;
	text-align: center;
	max-width: 100%;
}
.fl-builder-content .fl-button-left {
	text-align: left;
}
.fl-builder-content .fl-button-center {
	text-align: center;
}
.fl-builder-content .fl-button-right {
	text-align: right;
}
.fl-builder-content .fl-button i {
	font-size: 1.3em;
	height: auto;
	margin-right:8px;
	vertical-align: middle;
	width: auto;
}
.fl-builder-content .fl-button i.fl-button-icon-after {
	margin-left: 8px;
	margin-right: 0;
}
.fl-builder-content .fl-button-has-icon .fl-button-text {
	vertical-align: middle;
}

/* Icons
------------------------------------------------------ */

.fl-icon-wrap {
	display: inline-block;
}
.fl-icon {
	display: table-cell;
	vertical-align: middle;
}
.fl-icon a {
	text-decoration: none;
}
.fl-icon i {
	float: right;
	height: auto;
	width: auto;
}
.fl-icon i:before {
	border: none !important;
	height: auto;
	width: auto;
}
.fl-icon-text {
	display: table-cell;
	text-align: left;
	padding-left: 15px;
	vertical-align: middle;
}
.fl-icon-text-empty {
	display: none;
}
.fl-icon-text *:last-child {
	margin: 0 !important;
	padding: 0 !important;
}
.fl-icon-text a {
	text-decoration: none;
}
.fl-icon-text span {
	display: block;
}
.fl-icon-text span.mce-edit-focus {
	min-width: 1px;
}

/* Photos
------------------------------------------------------ */

.fl-module img {
	max-width: 100%;
}
.fl-photo {
	line-height: 0;
	position: relative;
}
.fl-photo-align-left {
	text-align: left;
}
.fl-photo-align-center {
	text-align: center;
}
.fl-photo-align-right {
	text-align: right;
}
.fl-photo-content {
	display: inline-block;
	line-height: 0;
	position: relative;
	max-width: 100%;
}
.fl-photo-img-svg {
	width: 100%;
}
.fl-photo-content img {
	display: inline;
	height: auto;
	max-width: 100%;
}
.fl-photo-crop-circle img {
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
}
.fl-photo-caption {
	font-size: 13px;
	line-height: 18px;
	overflow: hidden;
	text-overflow: ellipsis;
}
.fl-photo-caption-below {
	padding-bottom: 20px;
	padding-top: 10px;
}
.fl-photo-caption-hover {
	background: rgba(0,0,0,0.7);
	bottom: 0;
	color: #fff;
	left: 0;
	opacity: 0;
	filter: alpha(opacity = 0);
	padding: 10px 15px;
	position: absolute;
	right: 0;
	-webkit-transition:opacity 0.3s ease-in;
	-moz-transition:opacity 0.3s ease-in;
	transition:opacity 0.3s ease-in;
}
.fl-photo-content:hover .fl-photo-caption-hover {
	opacity: 100;
	filter: alpha(opacity = 100);
}

/* Pagination
------------------------------------------------------ */

.fl-builder-pagination,
.fl-builder-pagination-load-more {
	padding: 40px 0;
}
.fl-builder-pagination ul.page-numbers {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
}
.fl-builder-pagination li {
	display: inline-block;
	list-style: none;
	margin: 0;
	padding: 0;
}
.fl-builder-pagination li a.page-numbers,
.fl-builder-pagination li span.page-numbers {
	border: 1px solid #e6e6e6;
	display: inline-block;
	padding: 5px 10px;
	margin: 0 0 5px;
}
.fl-builder-pagination li a.page-numbers:hover,
.fl-builder-pagination li span.current {
	background: #f5f5f5;
	text-decoration: none;
}

/* Slideshows
------------------------------------------------------ */

.fl-slideshow,
.fl-slideshow * {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;

}
.fl-slideshow .fl-slideshow-image img {
	max-width: none !important;
}
.fl-slideshow-social {
	line-height: 0 !important;
}
.fl-slideshow-social * {
	margin: 0 !important;
}

/* Sliders
------------------------------------------------------ */

.fl-builder-content .bx-wrapper .bx-viewport {
	background: transparent;
	border: none;
	box-shadow: none;
	left: 0;
}

/* Lightbox
------------------------------------------------------ */

.mfp-wrap button.mfp-arrow,
.mfp-wrap button.mfp-arrow:active,
.mfp-wrap button.mfp-arrow:hover,
.mfp-wrap button.mfp-arrow:focus {
	background: transparent !important;
	border: none !important;
	outline: none;
	position: absolute;
	top: 50%;
	box-shadow: none !important;
}
.mfp-wrap .mfp-close,
.mfp-wrap .mfp-close:active,
.mfp-wrap .mfp-close:hover,
.mfp-wrap .mfp-close:focus {
	background: transparent !important;
	border: none !important;
	outline: none;
	position: absolute;
	top: 0;
	box-shadow: none !important;
}
.admin-bar .mfp-wrap .mfp-close,
.admin-bar .mfp-wrap .mfp-close:active,
.admin-bar .mfp-wrap .mfp-close:hover,
.admin-bar .mfp-wrap .mfp-close:focus {
	top: 32px!important;
}
img.mfp-img {
	padding: 0;
}
.mfp-counter {
	display: none;
}

.mfp-wrap .mfp-preloader.fa {
	font-size: 30px;
}

/* Form Fields
------------------------------------------------------ */

.fl-form-field {
	margin-bottom: 15px;
}
.fl-form-field input.fl-form-error {
	border-color: #DD6420;
}
.fl-form-error-message {
	clear: both;
	color: #DD6420;
	display: none;
	padding-top: 8px;
	font-size: 12px;
	font-weight: lighter;
}
.fl-form-button-disabled {
	opacity: 0.5;
}

/* Animations
------------------------------------------------------ */

.fl-animation {
	opacity: 0;
}
body.fl-no-js .fl-animation {
	opacity: 1;
}
.fl-builder-preview .fl-animation,
.fl-builder-edit .fl-animation,
.fl-animated {
	opacity: 1;
}
.fl-animated {
	animation-fill-mode: both;
}

/* Button Icon Animation */
.fl-button.fl-button-icon-animation i {
	width: 0 !important;
	opacity: 0;
	transition: all 0.2s ease-out;
}
.fl-button.fl-button-icon-animation:hover i {
	opacity: 1 !important;
}
.fl-button.fl-button-icon-animation i.fl-button-icon-after {
	margin-left: 0px !important;
}
.fl-button.fl-button-icon-animation:hover i.fl-button-icon-after {
	margin-left: 10px !important;
}
.fl-button.fl-button-icon-animation i.fl-button-icon-before {
	margin-right: 0 !important;
}
.fl-button.fl-button-icon-animation:hover i.fl-button-icon-before {
	margin-right: 20px !important;
  margin-left: -10px;
}

/* Default button colors for non Beaver Builder themes.
------------------------------------------------------ */

.fl-builder-content .fl-button:is(a, button),
.fl-builder-content a.fl-button:visited {
	background: #fafafa;
	border: 1px solid #ccc;
	color: #333;
}
.fl-builder-content .fl-button:is(a, button) *,
.fl-builder-content a.fl-button:visited * {
	color: #333;
}@media (max-width: 1200px) { /**
 * Styles needed for the large breakpoint.
 */
 }@media (max-width: 992px) { /* Columns
------------------------------------------------------ */

/* Reversed Responsive Stacking */
.fl-col-group.fl-col-group-medium-reversed {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap-reverse;
	flex-wrap: wrap-reverse;
	flex-direction: row-reverse;
}
 }@media (max-width: 700px) { /* Rows
------------------------------------------------------ */

.fl-row-content-wrap {
	background-attachment: scroll !important;
}
.fl-row-bg-parallax .fl-row-content-wrap {
	background-attachment: scroll !important;
	background-position: center center !important;
}

/* Column Groups
------------------------------------------------------ */

/* Equal Heights */
.fl-col-group.fl-col-group-equal-height {
	display: block;
}
.fl-col-group.fl-col-group-equal-height.fl-col-group-custom-width {
	display: -webkit-box;
    display: -webkit-flex;
    display: flex;
}

/* Reversed Responsive Stacking */
.fl-col-group.fl-col-group-responsive-reversed {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap-reverse;
	flex-wrap: wrap-reverse;
	flex-direction: row-reverse;
}
.fl-col-group.fl-col-group-responsive-reversed .fl-col:not(.fl-col-small-custom-width) {
	flex-basis: 100%;
	width: 100% !important;
}
.fl-col-group.fl-col-group-medium-reversed:not(.fl-col-group-responsive-reversed) {
	display: unset;
	display: unset;
	-webkit-flex-wrap: unset;
	flex-wrap: unset;
	flex-direction: unset;
}

/* Columns
------------------------------------------------------ */

.fl-col {
	clear: both;
	float: none;
	margin-left: auto;
	margin-right: auto;
	width: auto !important;
}
.fl-col-small:not(.fl-col-small-full-width) {
	max-width: 400px;
}
.fl-block-col-resize {
	display:none;
}
/* Rows
------------------------------------------------------ */

.fl-row[data-node] .fl-row-content-wrap {
	margin: 0;
	padding-left: 0;
	padding-right: 0;
}
.fl-row[data-node] .fl-bg-video,
.fl-row[data-node] .fl-bg-slideshow {
	left: 0;
	right: 0;
}

/* Columns
------------------------------------------------------ */

.fl-col[data-node] .fl-col-content {
	margin: 0;
	padding-left: 0;
	padding-right: 0;
}
 }@media (min-width: 1201px) {
	html .fl-visible-large:not(.fl-visible-desktop),
	html .fl-visible-medium:not(.fl-visible-desktop),
	html .fl-visible-mobile:not(.fl-visible-desktop) {
		display: none;
	}
}

@media (min-width: 993px) and (max-width: 1200px) {
	html .fl-visible-desktop:not(.fl-visible-large),
	html .fl-visible-medium:not(.fl-visible-large),
	html .fl-visible-mobile:not(.fl-visible-large) {
		display: none;
	}
}

@media (min-width: 701px) and (max-width: 992px) {
	html .fl-visible-desktop:not(.fl-visible-medium),
	html .fl-visible-large:not(.fl-visible-medium),
	html .fl-visible-mobile:not(.fl-visible-medium) {
		display: none;
	}
}

@media (max-width: 700px) {
	html .fl-visible-desktop:not(.fl-visible-mobile),
	html .fl-visible-large:not(.fl-visible-mobile),
	html .fl-visible-medium:not(.fl-visible-mobile) {
		display: none;
	}
}
.fl-col-content {
	display: flex;
	flex-direction: column;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-row-fixed-width {
	max-width: 1280px;
}
.fl-builder-content > .fl-module-box {
	margin: 0;
}
.fl-row-content-wrap {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
}
.fl-module-content, .fl-module:where(.fl-module:not(:has(> .fl-module-content))) {
	margin-top: 10px;
	margin-right: 10px;
	margin-bottom: 10px;
	margin-left: 10px;
}
@media(max-width: 1200px) {
	.fl-row-fixed-width {
		max-width: 1280px;
	}
}
@media(max-width: 992px) {
	.fl-row-fixed-width {
		max-width: 1280px;
	}
	.fl-row[data-node] > .fl-row-content-wrap {
		margin-top: 0px;
		margin-right: 0px;
		margin-bottom: 0px;
		margin-left: 0px;
	}
}
@media(max-width: 700px) {
	.fl-row-fixed-width {
		max-width: 1280px;
	}
	.fl-row[data-node] > .fl-row-content-wrap {
		padding-top: 10px;
		padding-right: 10px;
		padding-bottom: 10px;
		padding-left: 10px;
	}
}






.fl-node-f5sxd4zlg7wi .fl-row-content {
	max-width: 100%;
}
 .fl-node-f5sxd4zlg7wi > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}




.fl-node-hl3zkdot2n87 {
	width: 100%;
}
/**
 * This file should contain frontend styles that
 * will be applied to all module instances.
 */

.bb-gf-input.input-small {
    width: 46px !important;
}
.fl-module .pp-cf7-content input.wpcf7-submit {
    clear: both;
}
.pp-cf7-content label {
	display: block;
}

@media only screen and (min-width: 769px) {
    .pp-cf7-content .pp-cf7-col-1 {
        width: 100%;
        padding: 0 5px;
        clear: left;
    }
    .pp-cf7-content .pp-cf7-col-2 {
    	width: 50%;
    	float: left;
        padding: 0 5px;
    }
    .pp-cf7-content .pp-cf7-col-3 {
    	width: 33.33%;
    	float: left;
        padding: 0 5px;
    }
    .pp-cf7-content .pp-cf7-col-4 {
    	width: 25%;
    	float: left;
        padding: 0 5px;
    }
    .pp-cf7-content .pp-cf7-col-5 {
    	width: 20%;
    	float: left;
        padding: 0 5px;
    }
    .pp-cf7-content .pp-cf7-col-6 {
    	width: 16.66%;
    	float: left;
        padding: 0 5px;
    }
}

@media only screen and (max-width: 768px) {
	.pp-cf7-content .wpcf7-text,
	.pp-cf7-content .wpcf7-email,
	.pp-cf7-content .wpcf7-textarea,
	.pp-cf7-content .wpcf7-quiz,
	.pp-cf7-content .wpcf7-number,
    .pp-cf7-content .wpcf7-date,
    .pp-cf7-content .wpcf7-select {
		width: 100% !important;
	}
}
@media (max-width: 700px) { /**
 * This file should contain frontend styles that 
 * will be applied to all module instances once
 * the responsive breakpoint has been reached. The
 * responsive breakpoint can be set in the global 
 * settings or individual page settings.
 */ }.fl-node-kdr1zjoalgfc .pp-cf7-content {
            			background-color: #ffffff;
                    }

.fl-node-kdr1zjoalgfc .pp-cf7-form-title {
    }

.fl-node-kdr1zjoalgfc .pp-cf7-form-description {
    }

.fl-node-kdr1zjoalgfc .pp-cf7-content form p {
    }

.fl-node-kdr1zjoalgfc .pp-cf7-content .wpcf7-text,
.fl-node-kdr1zjoalgfc .pp-cf7-content .wpcf7-email,
.fl-node-kdr1zjoalgfc .pp-cf7-content .wpcf7-textarea,
.fl-node-kdr1zjoalgfc .pp-cf7-content .wpcf7-quiz,
.fl-node-kdr1zjoalgfc .pp-cf7-content .wpcf7-number,
.fl-node-kdr1zjoalgfc .pp-cf7-content .wpcf7-date,
.fl-node-kdr1zjoalgfc .pp-cf7-content .wpcf7-select {
    color: #222222;    		background-color: #fdfeff;
	    border-color: #dadee1;                    border-radius: 30px;
            -moz-border-radius: 30px;
            -webkit-border-radius: 30px;
            -ms-border-radius: 30px;
            -o-border-radius: 30px;
                    border-width: 0px;
        border-width: 1px;
            height: 40px;    width: 100%;    padding: 12px;        margin-top: 5px;    margin-bottom: 5px;}

.fl-node-kdr1zjoalgfc .pp-cf7-content .wpcf7-text:focus,
.fl-node-kdr1zjoalgfc .pp-cf7-content .wpcf7-email:focus,
.fl-node-kdr1zjoalgfc .pp-cf7-content .wpcf7-textarea:focus,
.fl-node-kdr1zjoalgfc .pp-cf7-content .wpcf7-quiz:focus,
.fl-node-kdr1zjoalgfc .pp-cf7-content .wpcf7-number:focus,
.fl-node-kdr1zjoalgfc .pp-cf7-content .wpcf7-date:focus,
.fl-node-kdr1zjoalgfc .pp-cf7-content .wpcf7-select:focus {
    border-color: ;
}

.fl-node-kdr1zjoalgfc .pp-cf7-content .wpcf7-textarea {
    height: 200px;}
.fl-node-kdr1zjoalgfc .pp-cf7-content .wpcf7-file {
    height: 40px;}

.fl-node-kdr1zjoalgfc .pp-cf7-content input.wpcf7-submit {
                    padding-top: 13px;
        padding-bottom: 13px;
                padding-left: 40px;
        padding-right: 40px;
        		float: right;
	        width: px;
}

.fl-node-kdr1zjoalgfc .pp-cf7-content input.wpcf7-submit:hover {
			}


.fl-node-kdr1zjoalgfc .pp-cf7-content .wpcf7-response-output {
        color: #dc1e28;        font-size: 12px;}

.fl-node-kdr1zjoalgfc .pp-cf7-content .wpcf7-not-valid-tip {
    display: block;    color: #dc1e28;}


.fl-node-kdr1zjoalgfc .pp-cf7-content input[type=text]::-webkit-input-placeholder {
        color: #999999;
    }

.fl-node-kdr1zjoalgfc .pp-cf7-content input[type=text]:-moz-placeholder {
        color: #999999;
    }
.fl-node-kdr1zjoalgfc .pp-cf7-content input[type=text]::-moz-placeholder {
        color: #999999;
    }
.fl-node-kdr1zjoalgfc .pp-cf7-content input[type=tel]::-webkit-input-placeholder {
        color: #999999;
    }
.fl-node-kdr1zjoalgfc .pp-cf7-content input[type=tel]:-moz-placeholder {
        color: #999999;
    }
.fl-node-kdr1zjoalgfc .pp-cf7-content input[type=tel]::-moz-placeholder {
        color: #999999;
    }
.fl-node-kdr1zjoalgfc .pp-cf7-content input[type=email]::-webkit-input-placeholder {
        color: #999999;
    }
.fl-node-kdr1zjoalgfc .pp-cf7-content input[type=email]:-moz-placeholder {
        color: #999999;
	}
.fl-node-kdr1zjoalgfc .pp-cf7-content input[type=email]::-moz-placeholder {
        color: #999999;
    }

.fl-node-kdr1zjoalgfc .pp-cf7-content textarea::-webkit-input-placeholder {
        color: #999999;
    }
.fl-node-kdr1zjoalgfc .pp-cf7-content textarea:-moz-placeholder {
        color: #999999;
	}
.fl-node-kdr1zjoalgfc .pp-cf7-content textarea::-moz-placeholder {
        color: #999999;
	}
 .fl-node-kdr1zjoalgfc > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}

/* Start Global CSS */

/* End Global CSS */


/* Start Global Nodes CSS */

/* End Global Nodes CSS */


/* Start Layout CSS */
:root {
    --neutral-neutral-100-white: rgba(255, 255, 255, 1);
   
    --typography-white: rgba(255, 255, 255, 1);
   
    --typography-dark: rgba(48, 57, 63, 1);
   
    --white: rgba(253, 254, 255, 1);
    --themeneutral-100: rgba(255, 255, 255, 1);
    --themebrand-20: rgb(220, 30, 40);
    --asseco-asseco-blue: rgba(0, 164, 224, 1);
    --body-12-regular-font-family: 'Roboto', Helvetica;
    --body-12-regular-font-weight: 400;
    --body-12-regular-font-size: 12px;
    --body-12-regular-letter-spacing: 0px;
    --body-12-regular-line-height: 18px;
    --body-12-regular-font-style: normal;
    --body-12-medium-font-weight: 500;
    --body-12-medium-font-size: 12px;
    --body-12-medium-letter-spacing: 0px;
    --body-12-medium-line-height: 18px;
    --body-12-medium-font-style: normal;
   
    --shadow-m: 0px 2px 1px 0px rgba(0, 0, 0, 0.06), 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
    --variable-collection-5: rgba(245, 245, 245, 1);
    --variable-collection-10: rgba(234, 235, 236, 1);
    --variable-collection-15: rgba(224, 225, 226, 1);
    --variable-collection-20: rgba(214, 215, 217, 1);
    --variable-collection-30: rgba(193, 196, 197, 1);
    --variable-collection-40: rgba(172, 176, 178, 1);
    --variable-collection-50: rgba(151, 156, 159, 1);
    --variable-collection-60: rgba(131, 136, 140, 1);
    --variable-collection-70: rgba(110, 116, 121, 1);
    --variable-collection-80: rgba(89, 97, 101, 1);
    --variable-collection-90: #454d52;
    --variable-collection-95: rgba(58, 67, 73, 1);
    --variable-collection-100: #30393f;
   
    --UI-colors-ds-color-text-dark-gray: var(--theme-base-color-gray-10);
    --UI-colors-ds-color-ui-brand-logo: var(--theme-base-color-brand-50-logo);
   
    --UI-colors-ds-tag-text-blue: var(--theme-base-color-md-blue-txt);
    --UI-colors-ds-tag-text-green: var(--theme-base-color-md-green-txtwcag);
    --UI-colors-ds-color-ui-neutral-100: var(--theme-base-color-gray-100);
    --UI-colors-ds-color-ui-brand-primary: var(--theme-base-color-brand-50-primery);
    --UI-colors-ds-color-ui-neutral-80: var(--theme-base-color-gray-80);
    --UI-colors-ds-color-ui-brand-accent-primary: var(--theme-base-color-brand-100);
   
    --UI-colors-ds-color-ui-neutral-50: var(--theme-base-color-gray-60);
    --UI-colors-ds-tag-fill-blue: var(--theme-base-color-md-blue-100);
    --UI-colors-ds-tag-fill-green: var(--theme-base-color-md-green-100);
    --UI-colors-ds-color-ui-neutral-95: var(--theme-base-color-gray-95);
    --UI-colors-ds-color-icon-brand-inverted: var(--theme-base-color-gray-100);
    --UI-colors-ds-color-text-gray: var(--theme-base-color-gray-40);
    --UI-colors-ds-color-ui-neutral-70: var(--theme-base-color-gray-75);
    --UI-colors-ds-tag-paired-text-teal: var(--theme-base-color-md-teal-txt);
    --UI-colors-ds-tag-paired-fill-teal: var(--theme-base-color-md-teal-100);
    --UI-colors-ds-color-text-light-gray: var(--theme-base-color-gray-45);
    --UI-colors-row-selected: rgba(248, 241, 241, 1);
    --UI-colors-row-hovered: rgba(245, 245, 245, 1);
    --UI-colors-row-selected-hovered: rgba(245, 237, 237, 1);
    --theme-base-color-gray-10: rgba(34, 34, 34, 1);
    --theme-base-color-brand-50-logo: var(--theme-base-color-blue-50);
    --theme-base-color-gray-100: rgba(255, 255, 255, 1);
    --theme-base-color-md-blue-txt: rgba(11, 58, 131, 1);
    --theme-base-color-md-green-txtwcag: rgba(22, 76, 26, 1);
    --theme-base-color-brand-50-primery: var(--theme-base-color-blue-50);
    --theme-base-color-gray-80: rgba(229, 229, 229, 1);
    --theme-base-color-brand-100: var(--theme-base-color-blue-100);
    --theme-base-color-blue-50: rgba(0, 140, 210, 1);
    --theme-base-color-blue-100: rgba(235, 248, 255, 1);
    --theme-base-color-gray-60: rgba(179, 179, 179, 1);
    --theme-base-color-md-blue-100: rgba(187, 222, 251, 1);
    --theme-base-color-md-green-100: rgba(200, 230, 201, 1);
    --theme-base-color-gray-95: rgba(250, 250, 250, 1);
    --theme-base-color-orange-50: rgba(245, 120, 10, 1);
    --theme-base-color-red-30: #bc1a22;
    --theme-base-color-red-50: #dc1e28;
    --theme-base-color-orange-100: rgba(254, 244, 235, 1);
    --theme-base-color-teal-50: rgba(0, 170, 160, 1);
    --theme-base-color-red-100: rgba(248, 241, 241, 1);
    --theme-base-color-teal-100: rgba(240, 250, 249, 1);
    --theme-base-color-gray-40: rgba(76, 76, 76, 1);
    --theme-base-color-gray-75: rgba(221, 221, 221, 1);
    --theme-base-color-md-teal-txt: rgba(0, 62, 52, 1);
    --theme-base-color-md-teal-100: rgba(178, 223, 219, 1);
    --theme-base-color-gray-45: rgba(102, 102, 102, 1);
    --radius-pill: var(--sizes-ds-size-160);
    --radius-large: var(--sizes-ds-size-80);
    --sizes-ds-size-160: 16px;
    --sizes-ds-size-80: 8px;
}

  /*

To enable a theme in your HTML, simply add one of the following data attributes to an HTML element, like so:

<body data-UI-colors-mode="light">
        <!-- the rest of your content -->
</body>

You can apply the theme on any DOM node, not just the `body`

*/

[data-UI-colors-mode='light'] {
    --UI-colors-ds-color-ui-neutral-100: var(--theme-base-color-gray-100);
}

[data-UI-colors-mode='dark'] {
    --UI-colors-ds-color-ui-neutral-100: var(--theme-base-color-gray-10);
}

[data-theme-mode='wapro'] {
    --theme-base-color-brand-50-logo: var(--theme-base-color-red-50);
    --theme-base-color-brand-50-primery: var(--theme-base-color-red-30);
    --theme-base-color-brand-100: var(--theme-base-color-red-100);
}

/* comments */

#main .pp-cf7-content input.wpcf7-email {
    margin-bottom: 8px !important;
}

#main .order-services-2 .pp-cf7-content input.wpcf7-text,
#main .order-services-2 .pp-cf7-content input.wpcf7-number {
    margin-bottom: 8px;
}

.order-services {
    background: url("/wp-content/uploads/2024/09/top-online-new.png") #ffffff top -110px center no-repeat !important;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

#main .container-body-tab {
    margin-top: 0;
}

.order-services .top {
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 100px;
}


.order-services .header-wrapper {
    display: flex;
    width: 100%;
    align-items: flex-start;
    justify-content: center;
    gap: 50px;
    padding: 0;
    position: relative;
}

.order-services .header-content {
    display: flex;
    max-width: 1260px;
    align-items: flex-start;
    gap: 100px;
    position: relative;
    margin-top: 80px;
}

.order-services .header-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    position: relative;
    flex: 1;
    flex-grow: 1;
}

.order-services .header-left h1 {
    align-self: stretch;
    margin-top: -1px;
    margin: 0 0 0 0;
    font-family: 'geomanist regular', sans-serif;
    font-weight: 400;
    color: var(--variable-collection-100);
    font-size: 48px;
    line-height: 48px;
    position: relative;
    letter-spacing: 0;
}

.order-services .header-left h1 span:nth-child(2),
.order-services .header-left h1 span:nth-child(3) {
    font-family: 'geomanist book', sans-serif;
}

.order-services .header-left h1 span:nth-child(3) {
    color: rgba(220, 30, 40, 1);
}

.order-services .header-left p {
    position: relative;
    margin: 0 0 0 0;
    align-self: stretch;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: var(--variable-collection-70);
    font-size: 20px;
    letter-spacing: 0;
    line-height: 30px;
}

.order-services .header-left .box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    width: 100%;
}

.order-services .header-left .box-item {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    border-radius: 16px 0px 0px 16px;
}

.order-services .header-left .box-item-icon {
    display: flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 100px;
}

.order-services .header-left .box-item .box-desc {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    position: relative;
    flex: 1;
    flex-grow: 1;
}

.order-services .header-left .box-item .box-desc-row {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.order-services .header-left .box-item .box-desc-row .title {
    width: fit-content;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: var(--variable-collection-90);
    font-size: 18px;
    line-height: 22px;
    white-space: nowrap;
    position: relative;
    letter-spacing: 0;
}

.order-services .tag-multicolor-blue {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px 3px;
    background-color: var(--UI-colors-ds-tag-fill-blue);
    border-radius: 8px;
}

.order-services .text-blue {
    width: fit-content;
    margin-top: -1px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: var(--UI-colors-ds-tag-text-blue);
    font-size: 16px;
    letter-spacing: 0;
    line-height: normal;
    white-space: nowrap;
}

.order-services #final-info-message {
    display: none;
}

#main .order-services div#final-info-message.wpcf7-response-output.show {
    display: block !important;
    width: 100%;
    max-width: 1260px;
    font-weight: 500;
    color: #3A863B;
}

  .order-services .header-left .box-desc p {
    position: relative;
    margin: 0 0 0 0;
    align-self: stretch;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: var(--variable-collection-90);
    font-size: 14px;
    letter-spacing: 0;
    line-height: 22px;
  }

  .order-services .header-left .box-icon {
    position: relative;
    width: 48px;
    height: 48px;
  }

  .order-services .tag-multicolor-green {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px 3px;
    position: relative;
    flex: 0 0 auto;
    background-color: var(--UI-colors-ds-tag-fill-green);
    border-radius: 8px;
  }

  .order-services .text-green {
    position: relative;
    width: fit-content;
    margin-top: -1px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: var(--UI-colors-ds-tag-text-green);
    font-size: 16px;
    letter-spacing: 0;
    line-height: normal;
    white-space: nowrap;
  }

  .order-services .header-tags {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    padding: 0 0 20px 0;
    position: relative;
    align-self: stretch;
    flex: 0 0 auto;
  }

  .order-services .tags-row {
    display: inline-flex;
    align-items: flex-start;
    gap: 12px;
    position: relative;
    flex: 0 0 auto;
  }

  .order-services .tags-item-text {
    position: relative;
    width: fit-content;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: var(--typography-dark);
    font-size: 14px;
    letter-spacing: 0;
    line-height: 22px;
    white-space: nowrap;
  }

  .order-services .tags-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px 8px 12px;
    position: relative;
    flex: 0 0 auto;
    background-color: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-m);
  }

  .order-services .check-red-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 2px;
    position: relative;
    flex: 0 0 auto;
    border-radius: 30px;
  }

  .order-services .img {
    position: relative;
    width: 21px;
    height: 21px;
  }

  .order-services .main {
    display: flex;
    flex-direction: column;
    width: 1920px;
    align-items: center;
    gap: 50px;
    position: relative;
  }

  .order-services .main h2 {
    font-family: 'geomanist regular', sans-serif;
    font-weight: 400;
    color: var(--variable-collection-100);
    font-size: 36px;
    text-align: center;
    line-height: 48px;
    margin: 0 0 0 0;
  }

  .order-services .products {
    display: flex;
    max-width: 1260px;
    align-items: flex-start;
    justify-content: center;
    gap: 50px;
    position: relative;
    flex: 0 0 auto;
  }

  .order-services .products-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    position: relative;
    flex: 1;
    flex-grow: 1;
  }

  .order-services .products-list-items {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
    flex: 0 0 auto;
    /*width: 100%;
position: relative; */
  }

  .order-services .products-list-items .title {
    display: flex;
    height: 30px;
    align-items: center;
    align-self: stretch;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: var(--variable-collection-100);
    font-size: 14px;
    letter-spacing: 0;
    line-height: 18px;
    position: relative;
  }

  .order-services .basic {
    gap: 12px;
    padding: 8px 8px 4px 18px;
  }

  .order-services .add {
    gap: 6px;
    padding: 8px 4px 4px;
  }

  .order-services .title .product {
    flex: 1;
  }

  .order-services .title .subscription {
    width: 140px;
  }

  .order-services .title .variant {
    width: 150px;
  }

  .order-services .title .number {
    width: 134px;
  }

  .order-services .product-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    padding: 8px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
    background-color: var(--UI-colors-ds-color-ui-neutral-100);
    border-radius: 15px;
    border: 1px solid;
    border-color: #dadee1;
    box-shadow: var(--shadow-m);
  }

  .order-services .product-box-item {
    display: flex;
    height: 59px;
    align-items: center;
    gap: 12px;
    padding: 10px 14px 10px 10px;
    position: relative;
    align-self: stretch;
    width: 100%;
    background-color: var(--themeneutral-100);
    border-radius: 8px;
    overflow: visible;
  }

  .order-services .product-box:hover .product-box-item {
    background-color: var(--UI-colors-row-hovered);
  }

  .order-services .selected-row {
    background-color: var(--UI-colors-row-selected);
  }

  .order-services .product-box:hover .product-box-item.selected-row {
    background-color: var(--UI-colors-row-selected-hovered);
  }

  .order-services .product-icon {
    position: relative;
    width: 32px;
    height: 32px;
  }

  .order-services .product-name {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    position: relative;
    flex: 1;
    flex-grow: 1;
  }

  .order-services .main-product-name {
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
    margin-top: -1px;
    font-family: 'geomanist book', sans-serif;
    color: var(--variable-collection-100);
    font-size: 16px;
    line-height: 1;
  }

  .order-services .product-name p {
    margin: 0 0 0 0;
    align-self: stretch;
    font-family: 'geomanist book', sans-serif;
    font-weight: 400;
    color: var(--variable-collection-100);
    font-size: 13px;
    line-height: 16px;
    position: relative;
    letter-spacing: 0;
  }

  .order-services .product-name p span,
  .order-services .main-product-name span,
  .order-services .info-desc-item p span {
    color: var(--themebrand-20);
  }

  .order-services strong {
    font-weight: 600;
  }

  .order-services .input {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    position: relative;
  }

  .order-services .input input[type=number],
  .order-services .input input[type=text],
  .order-services .input select {
    border-radius: 30px;
    border: 1px solid;
    border-color: #dadee1;
    background-color: #fdfeff;
    height: 39px;
    padding: 9.5px 16px;
    margin: 0 0 0 0;
    font-size: 14px;
  }

  /* Chrome, Safari, Edge, Opera */
  .order-services .input.num input::-webkit-outer-spin-button,
  .order-services .input.num input::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
    margin: 0;
  }

  /* Firefox */
  .order-services .input.num input[type=number] {
    -moz-appearance: textfield !important;
  }

  .order-services .input.num img {
    position: absolute;
  }

  .order-services .input.num img.plus {
    top: 9px;
    right: 51px;
    cursor: pointer;
  }

  .order-services .input.num img.minus {
    top: 9px;
    right: 15px;
    cursor: pointer;
  }

  .order-services .input select {
    background: url("/wp-content/uploads/2024/08/expand-more.svg") #fdfeff right 8px center no-repeat !important;
    cursor: pointer;
  }

  .order-services .input.sub {
    width: 140px;
    margin-top: -0.5px;
    margin-bottom: -0.5px;
  }

  .order-services .input.sub select,
  .order-services .input.sub input {
    width: 140px;
  }

  .order-services .input.var,
  .order-services .input.var select,
  .order-services .input.var input {
    width: 150px;
  }

  .order-services .input.num {
    width: 120px;
    margin-top: -0.5px;
    margin-bottom: -0.5px;
  }

  .order-services .input.num select,
  .order-services .input.num input {
    width: 120px;
  }

  .order-services .disable input,
  .order-services .disable select {
    background-color: var(--variable-collection-5) !important;
  }

  .order-services .label {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 9.5px 16px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
  }

  .order-services .label-text {
    position: relative;
    flex: 1;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: var(--UI-colors-ds-color-text-dark-gray);
    font-size: 14px;
    letter-spacing: 0;
    line-height: 20px;
  }

  .order-services .info {
    position: relative;
    width: 16px;
    height: 16px;
  }

  .order-services .product-box-add-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 6px;
    padding: 4px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: var(--variable-collection-90);
    font-size: 18px;
    line-height: 30px;
  }

  .order-services .product-box-add-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px 10px 10px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
    background-color: var(--UI-colors-ds-color-ui-neutral-100);
    border-radius: 8px;
    overflow: hidden;
  }

  .order-services .add-item-name {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    position: relative;
    flex: 1;
    flex-grow: 1;
  }

  .order-services .add-var-name {
    align-self: stretch;
    margin-top: -1px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: var(--variable-collection-100);
    font-size: 16px;
    line-height: normal;
    position: relative;
    letter-spacing: 0;
  }

  .order-services .add-show-details {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    position: relative;
    flex: 0 0 auto;
    border-radius: var(--radius-large);
    overflow: hidden;
  }

  .order-services .show-text {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    position: relative;
    flex: 0 0 auto;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: var(--themebrand-20);
    font-size: 13px;
    line-height: 16px;
  }

  .order-services .add-price {
    margin: 0 0 0 0;
    position: relative;
    width: fit-content;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: var(--variable-collection-90);
    font-size: 16px;
    text-align: right;
    letter-spacing: 0;
    line-height: 22px;
    white-space: nowrap;
  }

  .order-services .add-price span {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: var(--variable-collection-70);
    font-size: 14px;
  }
 
.radio .wpcf7-form-control span.wpcf7-list-item {
    margin: 0;
}

.order-services .radio {
    position: relative;
}
 
.wpcf7-form .order-services .radio .wpcf7-form-control.wpcf7-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    visibility: visible;
    cursor: pointer;
    width: 20px;
    height: 20px;
    top: -5px;
    left: 0;
  }
 
.order-services .radio .wpcf7-list-item-label {
    display: none;
}

  .order-services .radio .dot {
    position: relative;
    width: 18px;
    height: 18px;
    background-color: var(--UI-colors-ds-color-ui-neutral-100);
    border-radius: 9px;
    border: 1.12px solid;
    border-color: var(--UI-colors-ds-color-ui-neutral-50);
  }

  .order-services .radio:has(input:checked) .dot::after {
    content: "";
    position: relative;
    width: 8px;
    height: 8px;
    top: 4px;
    left: 4px;
    background-color: var(--theme-base-color-red-30);
    border-radius: 8px;
    display: block;
  }

  .order-services .add-var-desc {
    margin: 0 0 0 0;
    align-self: stretch;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: var(--variable-collection-70);
    font-size: 13px;
    line-height: 16px;
    position: relative;
    letter-spacing: 0;
  }

  .order-services .info-desc {
    padding: 8px;
    background-color: #ffffffcc;
    border-radius: 8px;
    display: flex;
    align-items: center;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
  }

  .order-services .info-desc-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
  }

  .order-services .info-desc-item p {
    margin: 0 0 0 0;
    position: relative;
    align-self: stretch;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: var(--variable-collection-80);
    font-size: 12px;
    letter-spacing: 0;
    line-height: 18px;
  }

  .order-services #summary {
    display: flex;
    flex-direction: column;
    width: 460px;
    align-items: flex-start;
    position: sticky;
    background-color: var(--UI-colors-ds-color-ui-neutral-100);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid;
    border-color: #d0d5dc;
    top: 50px;
  }

  .order-services #summary .header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 30px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
    background-color: var(--variable-collection-80);
    border-radius: 16px 16px 0px 0px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: var(--theme-base-color-gray-100);
    font-size: 24px;
    text-align: center;
    line-height: 28px;
  }

  .order-services .sum {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 30px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
    border-top-width: 1px;
    border-top-style: solid;
    border-color: #d9dde3;
  }

  .order-services .sum-amount {
    margin: 0 0 0 0;
    position: relative;
    align-self: stretch;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    text-align: center;
    letter-spacing: 0;
    line-height: normal;
  }

  .order-services .net-amount {
    margin: 0 0 0 0;
    color: var(--themebrand-20);
    font-size: 34px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0;
    line-height: normal;
  }

  .order-services .net-amount #net-amount,
  .order-services .net-amount #net-amount-sticky {
    font-size: 34px;
  }

  .order-services .net-amount span {
    color: var(--variable-collection-70);
    font-size: 16px;
    font-weight: 400;
  }

  .order-services .net-amount>span {
    color: var(--themebrand-20);
    font-size: 26px;
    font-weight: 600;
  }

  .order-services .gross-amount {
    color: var(--variable-collection-70);
    font-size: 16px;
  }

  .order-services .gross-amount>span {
    color: var(--variable-collection-70);
    font-weight: 600;
  }

  .order-services .sum-box,
  .order-services .sum-box-mobile {
    align-items: center;
    gap: 20px;
    padding: 20px 30px;
    background-color: var(--UI-colors-ds-color-ui-neutral-95);
    display: flex;
    flex-direction: column;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    text-align: center;
  }
 
  .order-services .sum-box-mobile {
      display: none;
  }

  .order-services .sum-box .title {
    color: var(--variable-collection-95);
    font-size: 24px;
    line-height: 30px;
  }

  .order-services .sum-box p {
    margin: 0 0 0 0;
    color: var(--variable-collection-70);
    font-size: 14px;
    line-height: 22px;
  }

  .order-services .next-button {
    all: unset;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px 30px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
  }

.order-services #summary .next-button span.button,
.order-services-2 .next-button span.button,
.order-services-3 .next-button span.button {
    cursor: not-allowed;
    display: inline-flex;
    height: 48px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 17px 40px;
    position: relative;
    flex: 0 0 auto;
    background-color: var(--variable-collection-5) !important;
    border-radius: 30px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--variable-collection-60);
    font-size: 14px;
    text-align: center;
    letter-spacing: 0;
    line-height: 14px;
    white-space: nowrap;
    border: 0;
}

.order-services-2 .next-button span.button {
    display: none;
}
 
.order-services-2 .wpcf7-submit-container.next-button,
.order-services-3 .wpcf7-submit-container.next-button {
    position: relative;
}
 
.order-services #summary .next-button a.multistep-cf7-next,
.order-services-2 .next-button a.multistep-cf7-next,
.order-services-2 .next-button a.multistep-cf7-prev,
.order-services-3 .next-button input.wpcf7-submit,
.order-services-3 .next-button a.multistep-cf7-prev {
  height: 48px;
  padding: 17px 40px !important;
  text-align: center;
  border-radius: 30px;
  border: 1px solid #dc1e28;
  border-top-color: rgb(220, 30, 40);
  border-right-color: rgb(220, 30, 40);
  border-bottom-color: rgb(220, 30, 40);
  border-left-color: rgb(220, 30, 40);
  background: #dc1e28 !important;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 14px;
  color: #fff !important;
}
 
.order-services-2 .next-button a.multistep-cf7-prev,
.order-services-3 .next-button a.multistep-cf7-prev {
    border: 1px solid rgba(218, 222, 225, 0.50);
    background: #FDFEFF !important;
    color: #1B1A1E !important;
}
 
.order-services #summary .next-button a.multistep-cf7-next:hover,
.order-services-2 .next-button a.multistep-cf7-next:hover,
.order-services-2 .next-button a.multistep-cf7-prev:hover,
.order-services-3 .next-button input.wpcf7-submit:hover,
.order-services-3 .next-button a.multistep-cf7-prev:hover {
    background: var(--vamtam-accent-color-6) !important;
    color: var(--vamtam-accent-color-6-hc) !important;
    border-color: var(--vamtam-accent-color-6) !important;
    opacity: 1;
}
 
.pp-cf7-content form.wpcf7-form.submitting #summary .multistep-nav-right a.multistep-cf7-next,
.pp-cf7-content form.wpcf7-form.submitting .order-services-2 .next-button a.multistep-cf7-next,
.pp-cf7-content form.wpcf7-form.submitting .order-services-3 .next-button input.wpcf7-submit {
    color: #dc1e28 !important;
}

.pp-cf7-content form.wpcf7-form.submitting #summary .multistep-nav-right a.multistep-cf7-next:hover,
.pp-cf7-content form.wpcf7-form.submitting .order-services-2 .next-button a.multistep-cf7-next:hover,
.pp-cf7-content form.wpcf7-form.submitting .order-services-3 .next-button input.wpcf7-submit:hover {
    color: var(--vamtam-accent-color-6) !important;
}

.wpcf7-spinner::before {
    display: none;
}
 
.multistep-nav-right .wpcf7-spinner,
.next-button .wpcf7-spinner {
    margin: 0;
    position: absolute;
    right: 86px;
    top: 11px;
    background-image: url(https://wapro.pl/wp-content/uploads/2020/03/ajax-loader.svg);
    background-size: 24px 24px;
    background-color: transparent;
    opacity: 1;
}

.order-services-2 .next-button .wpcf7-spinner {
    right: 46px;
}

.order-services-2 .wpcf7-not-valid-tip {
    padding-left: 16px;
    font-size: 12px;
}

.wpcf7-spinner::before {
    display: none;
}

.main-container .order-services-2 input[type="email"].wpcf7-not-valid,
.main-container .order-services-2 input[type="tel"].wpcf7-not-valid,
.main-container .order-services-2 input[type="text"].wpcf7-not-valid {
    border-color: var(--vamtam-accent-color-1);
}

.main-container .order-services-2 input[type="email"],
.main-container .order-services-2 input[type="tel"] {
    font-size: 14px;
    padding: 9.5px 16px;
}

.main-container .order-services-2 .fieldset .form-field,
.main-container .order-services-2 .fieldset .form-field .wpcf7-form-control-wrap {
    width: 100%;
}

  .order-services .sum-info {
    flex-direction: column;
    gap: 12px;
    padding: 0px 30px 20px;
    display: flex;
    align-items: center;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
  }

  .order-services .line {
    position: relative;
    align-self: stretch;
    width: 100%;
    height: 1px;
    background-color: var(--UI-colors-ds-color-ui-neutral-80);
  }

  .order-services .sum-info p {
    margin: 0 0 0 0;
    align-self: stretch;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: var(--variable-collection-70);
    font-size: 14px;
    line-height: 22px;
    position: relative;
    letter-spacing: 0;
  }

  #main div.wpcf7-response-output {
    border-radius: 8px;
  }

  #main form.wpcf7-form.invalid div.wpcf7-response-output {
    font-weight: 500;
  }

  /* wybrane produkty */

  .order-services .sum-products-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
  }

  .order-services .sum-product-item {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: flex-start;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
  }

  .order-services .punkt {
    background: var(--ds-color-icon-brand-inverted, #ffffff);
    border-radius: 30px;
    padding: 2px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
  }

  .order-services .sum-main-product {
    padding: 2px 0px 0px 0px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
    justify-content: flex-start;
    flex-shrink: 0;
    position: relative;
  }

  .order-services .sum-product-item {
    color: var(--80, #596165);
    font-family: Inter, sans-serif;
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .order-services .acceptance,
  .order-services-2 .form-field-checkbox {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
  }

  .order-services .acceptance p {
    font-family: 'Geomanist Book', sans-serif;
    font-size: 16px;
    line-height: 22px;
    color: var(--typography-dark);
  }

  .order-services .acceptance p span {
    color: var(--themebrand-20);
  }

  .order-services .acceptance .wpcf7-form-control span.wpcf7-list-item,
  .order-services-2 .form-field-checkbox .wpcf7-form-control span.wpcf7-list-item {
    margin: 0;
  }

  .order-services .acceptance .wpcf7-form-control span.wpcf7-list-item input[type="checkbox"]+span::before,
  .order-services-2 .form-field-checkbox .wpcf7-form-control span.wpcf7-list-item input[type="checkbox"]+span::before {
    height: 18px;
    width: 18px;
    border: 1px solid #aaa;
    border-radius: 2px !important;
  }

  .order-services .acceptance .wpcf7-form-control.wpcf7-checkbox span.wpcf7-list-item input[type="checkbox"]:checked + span::after,
  .order-services-2 .form-field-checkbox .wpcf7-form-control.wpcf7-checkbox span.wpcf7-list-item input[type="checkbox"]:checked + span::after,
  .order-services-2 .form-acceptance .wpcf7-form-control.wpcf7-acceptance span.wpcf7-list-item input[type="checkbox"]:checked + span::after {
    background: #BC1A22 !important;
    color: #ffffff !important;
    border-radius: 2px !important;
    display: block !important;
    position: absolute !important;
    height: 18px !important;
    width: 18px !important;
    padding-left: 0 !important;
    padding-top: 1px !important;
    border: 1px solid #BC1A22 !important;
    font-family: "wapro-icons13";
    content: '\e810';
    font-size: 18px;
    top: 0;
    left: 1px;
  }

  .order-services .acceptance .wpcf7-form-control.wpcf7-checkbox span.wpcf7-list-item .wpcf7-list-item-label {
    padding-left: 9px;
    font-family: 'Geomanist Book', sans-serif;
    font-size: 16px;
    line-height: 22px;
    color: var(--typography-dark);
  }

  .order-services .acceptance .wpcf7-form-control.wpcf7-checkbox span.wpcf7-list-item .wpcf7-list-item-label span {
    color: var(--themebrand-20);
  }

  /* koniec wybranych produktow */

  /*tooltips*/

  .order-services .product-box-item details {
    position: relative;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px;
    transition: 0.15s background linear;
  }
  
  .tooltip-icon{
     background-image: none !important; 
  }

  .order-services .product-box-item details:hover {
    background: none;
  }

  .order-services .product-box-item summary {
    list-style: none;
    width: 16px;
    height: 17px;
  }

  .order-services .product-box-item .product-name details p {
    cursor: auto;
    color: var(--typography-white);
    font-family: Inter;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    background: var(--variable-collection-80);
    padding: 20px;
    width: 320px;
    position: absolute;
    left: -10px;
    top: 30px;
    border-radius: 8px;
    z-index: 100;
  }

  .order-services .product-box-item details p:before {
    content: '';
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 12px solid var(--variable-collection-80);
    top: -10px;
    position: absolute;
    left: 10px;
  }

  .order-services .product-box-item details[open] p {
    -webkit-animation: animateDown 0.2s linear forwards;
    animation: animateDown 0.2s linear forwards;
  }

  @-webkit-keyframes animateDown {
    0% {
      opacity: 0;
      transform: translatey(-15px);
    }

    100% {
      opacity: 1;
      transform: translatey(0);
    }
  }

  @keyframes animateDown {
    0% {
      opacity: 0;
      transform: translatey(-15px);
    }

    100% {
      opacity: 1;
      transform: translatey(0);
    }
  }

  /*tooltips end*/
 
  /* pokaz szczegoly */
 
.order-services .product-open-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
 
.order-services .product-open-details .box {
    background: #fafafa;
    border-radius: 16px;
    padding: 12px 20px 12px 20px;
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
}
 
.order-services .product-open-details .det-col1 {
    color: var(--typography-dark);
    text-align: left;
    font-family: Inter, sans-serif;
    font-size: 13px;
    line-height: 18px;
    font-weight: 400;
    width: 262px;
}
 
.order-services .product-open-details .det-col2 {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
    justify-content: flex-start;
    flex: 1;
}
 
.order-services .product-open-details .det-list {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: flex-start;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
 
}
 
.order-services .product-open-details .det-text {
    color: var(--90, #454d52);
    text-align: left;
    font-family: Inter, sans-serif;
    font-size: 13px;
    line-height: 18px;
    font-weight: 400;
    padding-top: 1px;
}
 
.order-services .product-open-details .det-text span {
    font-weight: 600;
}

.order-services .wpcf7-form-control-wrap {
    position: initial;
}
 
/* pokaz szczegoly end */

/* CF7 */
#main div.wpcf7-response-output {
    display: none !important;
}

.wpcf7-response-output-demo,
.wpcf7-response-output-final {
    color: #BC1A22 !important;
    border: 1px solid#FADBDD !important;
    background-color: #F8F1F1 !important;
    background: url(/wp-content/uploads/2024/08/button-error-2.svg) #F8F1F1 left 15px top 11px no-repeat !important;
    padding: 12px 20px 12px 45px !important;
    border-radius: 6px;
    visibility: visible;
    display: none;
    margin: 20px 0 20px 0;
    font-size: 12px;
}

.order-services-2 .wpcf7-response-output-final {
    width: 100%;
}

.pp-cf7-content form div.wpcf7-response-output-demo p,
.pp-cf7-content form div.wpcf7-response-output-final p {
    color: #BC1A22 !important;
    line-height: 18px;  
    margin: 0;
    font-size: 12px;
}

/* STEP 2 */
.order-services-2 {
background-color: #ffffff;
display: flex;
flex-direction: column;
justify-content: center;
flex-wrap: wrap;
align-items: center;
}

.order-services-2 .img {
position: relative;
width: 21px;
height: 21px;
}

.order-services-2 .main {
display: flex;
flex-direction: column;
width: 100%;
align-items: center;
gap: 50px;
position: relative;
}

.order-services-2 .main h1,
.order-services-3 .main h1 {
font-family: 'geomanist book', sans-serif;
color: var(--typography-dark);
font-size: 48px;
text-align: center;
line-height: 56px;
}

.order-services-2 .color-red {
color: var(--themebrand-20);
}

.order-services-2 strong {
font-weight: 600;
}

.order-services-2 .form {
display: flex;
flex-direction: column;
width: 941px;
align-items: center;
justify-content: center;
gap: 30px;
box-shadow: 0px 8px 60px rgba(0, 0, 0, 0.15), 0px 2px 1px rgba(0, 0, 0, 0.06);
border-radius: 15px;
background-color: #fff;
padding: 40px 60px;
}

.order-services-2 .form-header {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 20px;
align-self: stretch;
}

.order-services-2 .form-content {
width: 100%;
display: flex;
flex-direction: row;
align-items: start;
justify-content: space-between;
gap: 30px;
padding-top: 20px;
}

.order-services-2 .form-acceptance {
display: flex;
flex-direction: column;
align-self: stretch;
align-items: flex-start;
justify-content: flex-start;
padding-top: 12px;
font-family: Inter, sans-serif;
font-size: 12px;
color: var(--variable-collection-70);
border-top: 1px solid #e5e5e5;
}

.order-services-2 .form-acceptance-items .wpcf7-list-item-label {
display: flex;
flex-direction: row;
gap: 15px;
}

.order-services-2 .form-acceptance .wpcf7-acceptance input[type="checkbox"] + span::before {
    padding: 0 8px;
}

.order-services-2 .form-acceptance .required-fields {
color: #454d52;
line-height: 18px;
}

.order-services-2 .form-acceptance .wpcf7-list-item-label .checkbox-text-container {
    font-size: 12px;
}

.order-services-2 .form-acceptance .wpcf7-list-item-label .checkbox-text-container a {
    color: var(--variable-collection-70) !important;
    text-decoration: underline;
    font-size: 12px !important;
}

.order-services-2 .form-field-checkbox .wpcf7-list-item-label {
    font-size: 14px !important;
    padding-left: 9px;
}

.order-services-2 .step-tag {
border-radius: 8px;
background-color: #f5f5f5;
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
padding: 5px 12px 3px;
color: var(--typography-dark);
font-family: Inter;
font-size: 16px;
font-weight: 500;
}

.order-services-2 .form-header h2 {
color: var(--variable-collection-90);
text-align: center;
font-family: 'geomanist regular', sans-serif;
font-size: 32px;
line-height: 34px;
}

.order-services-2 .form-header span {
font-family: 'geomanist book', sans-serif;
}

.order-services-2 .form-content-item {
display: flex;
flex-direction: column;
gap: 20px;
width: 50%;
}

.order-services-2 .two-items::before {
align-self: stretch;
content: '';
border: 1px solid var(--theme-base-color-gray-80);
}

.order-services-2 .two-items .form-content-item:first-child {
order: -1;
}

.order-services-2 .legend {
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: center;
padding: 12px 0 0;
font-size: 24px;
font-family: Inter, sans-serif;
color: var(--variable-collection-90);
line-height: 30px;
}

.order-services-2 .fieldset {
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: center;
gap: 3px;
font-family: Inter, sans-serif;
}

.order-services-2 .form-field label {
display: flex;
flex-direction: column;
align-items: flex-start;
}

.order-services-2 .form-field .form-field-checkbox label {
    display: block;
}

.order-services-2 .form-field {
font-family: Inter, sans-serif;
font-size: 14px;
}

.order-services-2 .form-label {
display: inline;
font-size: 12px;
font-weight: 500;
color: #6e7479;
margin-left: 16px;
}

.order-services-2 .wpcf7-form-control-wrap input[type=text] {
width: 100%;
border-radius: 30px;
background-color: #fdfeff;
border: 1px solid #dadee1;
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 8px;
padding: 9.5px 16px;
font-size: 14px;
line-height: 20px;
}

.order-services-2 .form-field-address {
display: flex;
flex-direction: row;
gap: 12px;
}

.order-services-2 .post-code input {
width: 110px;
}

.order-services-2 .city input {
width: 238px;
}

.order-services-2 .form-info-nip {
    background: url(/wp-content/uploads/2024/08/info-talk.svg) #fafafa left 15px top 11px no-repeat;
    padding: 10px 15px 10px 45px;
    border: 1px solid #DADEE1;
    border-radius: 15px;
}
.order-services-2 .form-info-nip strong{
    font-size: 14px;
    line-height: 20px !important;
    color:#4C4C4C;
}

.order-services-2 .form-info-nip a {
text-decoration: none;
}

.order-services-2 .form-acceptance .wpcf7-checkbox input[type='checkbox'],
.order-services-2 .form-acceptance .wpcf7-acceptance input[type='checkbox'] {
position: absolute;
visibility: hidden;
width: 18px;
height: 18px;
}

.order-services-2 .form-acceptance .wpcf7-checkbox input[type='checkbox'] + span:before,
.order-services-2 .form-acceptance .wpcf7-acceptance input[type='checkbox'] + span:before {
display: block;
position: relative;
content: '';
border-radius: 2px;
height: 18px;
width: 18px;
top: 0;
left: 1px;
border: 1px solid #aaa;
}

.order-services-2 .wpcf7-acceptance input[type='checkbox'] + span:after {
background: #bc1a22;
color: #fff;
border: 1px solid #aaa;
border-radius: 2px;
display: block;
position: absolute;
height: 18px;
width: 18px;
top: 0;
left: 1px;
padding-left: 0;
padding-top: 1px;
border: 1px solid #bc1a22;
}

.order-services-2 .form-acceptance .wpcf7-acceptance input[type='checkbox']:checked + span:after {
font-family: 'wapro-icons13';
content: '\e810';
font-size: 18px;
}

.order-services-2 .wpcf7-submit-container,
.order-services-3 .wpcf7-submit-container {
display: flex;
justify-content: flex-end;
gap: 10px;
width: 100%;
}

.order-services-2 .form-footer p {
margin-top: 40px;
padding-top: 12px;
border-top: 1px solid #e5e5e5;
font-size: 10px;
line-height: 14px;
color: #6e7479;
}

.order-services-2 .form-footer p a {
color: var(--themebrand-20);
text-decoration: underline;
}

.order-services-2 .form-field-checkbox {
display: flex;
flex-direction: row;
align-items: flex-start;
justify-content: flex-start;
font-size: 14px;
line-height: 18px;
color: #30393f;
}

.order-services-2 .checkbox-wrapper {
display: flex;
flex-direction: row;
align-items: flex-start;
justify-content: flex-start;
gap: 9px;
}

#partner-container,
#contact-container {
    display: none;
}

/* 3 Krok */
.order-services-3 {
background-color: #ffffff;
display: flex;
flex-direction: column;
justify-content: center;
flex-wrap: wrap;
align-items: center;
}

.order-services-3 .img {
position: relative;
width: 21px;
height: 21px;
}

.order-services-3 .main {
display: flex;
flex-direction: column;
width: 100%;
align-items: center;
gap: 50px;
position: relative;
}

.order-services-3 .color-red {
color: var(--themebrand-20);
}

.order-services-3 strong {
font-weight: 600;
}

.order-services-3 .form {
display: flex;
flex-direction: column;
width: 1260px;
align-items: flex-start;
justify-content: center;
gap: 30px;
box-shadow: 0px 8px 60px rgba(0, 0, 0, 0.15), 0px 2px 1px rgba(0, 0, 0, 0.06);
border-radius: 15px;
background-color: #fff;
padding: 40px 60px;
font-family: Inter, sans-serif;
}

.order-services-3 .summary-details {
display: flex;
padding: 20px;
width: 100%;
flex-direction: row;
justify-content: space-between;
align-items: flex-start;
gap: 12px;
border-radius: 16px;
background: var(--ds-color-ui-neutral-95, #fafafa);
}

.order-services-3 .summary-details .details-item {
display: flex;
flex-direction: column;
font-size: 14px;
line-height: 22px;
width: 33%;
}

.order-services-3 .summary-details .details-item p {
    margin-bottom: 0;
}

.order-services-3 .summary-details .details-item-label {
font-size: 16px;
font-weight: 600;
line-height: 22px;
color: var(--typography-dark);
margin-bottom: 12px!important;
}

.order-services-3 .summary-details p.details-item {
color: var(--variable-collection-90);
}

.order-services-3 .summary-details .details-item p span {
color: var(--variable-collection-95);
font-weight: 500;
}

/* three items */
.three-items::before,
.three-items::after {
align-self: stretch;
content: '';
border: 1px solid var(--theme-base-color-gray-80);
}
.three-items .details-item:first-child {
order: -1;
}
.three-items .details-item:last-child {
order: 1;
}

.padding-t-20 {
padding-top: 20px;
}

.order-services-3 .summary-products,
.order-services-3 .summary-products-mobile {
display: flex;
width: 100%;
padding: 20px;
flex-direction: column;
align-items: flex-start;
gap: 12px;
border-radius: 16px;
border: 1px solid #d0d5dc;
background: #fff;
}

.order-services-3 .summary-products h3, .order-services-3 .summary-price h3 {
color: var(--variable-collection-95);
font-size: 24px;
font-weight: 400;
line-height: 30px;
}

.order-services-3 .summary-plus {
    font-size: 42px;
    line-height: 20px;
    color: var(--themebrand-20);
    margin-left: 20px;
    font-weight: 400;
}
/* krok 1 */

.order-services-3 .summary-products .products,
.order-services-3 .summary-products-mobile .products {
display: flex;
width: 100%;
align-items: flex-start;
justify-content: center;
gap: 50px;
position: relative;
flex: 0 0 auto;
}

.order-services-3 .summary-products .products-list,
.order-services-3 .summary-products-mobile .products-list {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 30px;
position: relative;
flex: 1;
flex-grow: 1;
}

.order-services-3 .summary-products .products-list-items,
.order-services-3 .summary-products-mobile .products-list-items {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 10px;
align-self: stretch;
flex: 0 0 auto;
}

.order-services-3 .summary-products-mobile {
    display: none;
}

.order-services-3 .summary-products .products-list-items .title,
.order-services-3 .summary-products .products-list-items .item {
display: flex;
align-items: center;
align-self: stretch;
font-family: 'Inter', sans-serif;
font-weight: 400;
color: var(--variable-collection-100);
font-size: 14px;
letter-spacing: 0;
line-height: 18px;
height: 30px;
padding: 8px 0 4px;
gap: 6px;
border-bottom: 1px solid var(--theme-base-color-gray-80);
}

.order-services-3 .summary-products .products-list-items .item {
border-bottom: none;
font-size: 16px;
}

.order-services-3 .summary-products .basic {
gap: 12px;
}

.order-services-3 .summary-products .title .product,
.order-services-3 .summary-products .item .product {
flex: 1;
}

.order-services-3 .summary-products .title .subscription,
.order-services-3 .summary-products .item .subscription {
width: 170px;
}

.order-services-3 .summary-products .title .variant,
.order-services-3 .summary-products .item .variant {
width: 170px;
}

.order-services-3 .summary-products .title .number,
.order-services-3 .summary-products .item .number {
width: 114px;
}

.summary-products .item .number {
text-align: right;
}



.order-services-3 .summary-products .punkt {
background: var(--ds-color-icon-brand-inverted, #ffffff);
border-radius: 30px;
padding: 2px;
display: flex;
flex-direction: row;
gap: 10px;
align-items: center;
justify-content: center;
flex-shrink: 0;
position: relative;
}

.order-services-3 .main-product-name {
display: flex;
align-items: center;
gap: 6px;
position: relative;
align-self: stretch;
width: 100%;
flex: 0 0 auto;
margin-top: -1px;
font-family: 'geomanist book', sans-serif;
font-weight: 400;
color: var(--variable-collection-100);
font-size: 16px;
}

.order-services-3 .summary-price {
display: flex;
width: 100%;
padding: 0 20px;
flex-direction: row;
align-items: flex-start;
justify-content: space-between;
}

.order-services-3 .summary-prices {
display: flex;
flex-direction: column;
}

.order-services-3 .summary-prices-item {
display: flex;
flex-direction: row;
gap: 4px;
align-items: center;
color: var(--variable-collection-70);
}

.order-services-3 .summary-prices .sum-netto, .order-services-3 .summary-prices .sum-brutto {
font-size:16px;
line-height:22px;
width: 150px;

}

.order-services-3 .summary-prices .sum-netto, .order-services-3 .summary-prices .sum-brutto{
font-weight: 600;
text-align: right;
color: var(--variable-collection-70);
}


.order-services-3 .summary-prices .sum-netto {
color: var(--themebrand-20);
}

.order-services-3 .summary-prices .sum-netto  {
font-size: 22px;
}



/*old*/

.order-services-3 .form-header {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 20px;
align-self: stretch;
}

.order-services-3 .form-content {
width: 100%;
display: flex;
flex-direction: row;
align-items: start;
justify-content: space-between;
gap: 30px;
padding-top: 20px;
}



.order-services-3 .step-tag {
border-radius: 8px;
background-color: #f5f5f5;
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
padding: 5px 12px 3px;
color: var(--typography-dark);
font-family: Inter;
font-size: 16px;
font-weight: 500;
}

.order-services-3 .form-header h2 {
color: var(--variable-collection-90);
text-align: center;
font-family: 'geomanist regular', sans-serif;
font-size: 32px;
line-height: 34px;
}

.order-services-3 .form-header span {
font-family: 'geomanist book', sans-serif;
}

.order-services-3 .form-content-item {
display: flex;
flex-direction: column;
gap: 20px;
}



.order-services-3 .legend {
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: center;
padding: 12px 0 0;
font-size: 24px;
font-family: 'geomanist regular', sans-serif;
color: var(--variable-collection-90);
}



.order-services-3 .form-field label {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 3px;
}

.order-services-3 .form-field {
font-family: Inter, sans-serif;
font-size: 14px;
}

.order-services-3 .form-label {
display: inline;
font-size: 12px;
font-weight: 500;
color: #6e7479;
margin-left: 16px;
}
.order-services-3 .wpcf7-form-control-wrap span {
    width: 100%;
}

.order-services-3 .wpcf7-form-control-wrap input {
position: relative;
width: 100%;
border-radius: 30px;
background-color: #fdfeff;
border: 1px solid #dadee1;
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 8px;
padding: 9.5px 16px;
font-size: 14px;
line-height: 20px;
}




.order-services-3 .form-footer p {
margin-top: 40px;
padding-top: 12px;
border-top: 1px solid #e5e5e5;
font-size: 10px;
line-height: 14px;
color: #6e7479;
}

.order-services-3 .form-footer p a {
color: var(--themebrand-20);
text-decoration: underline;
}

.order-services-3 .form .form-field,
.order-services-3 .form .form-field .wpcf7-form-control-wrap {
    width: 100%;
}

.cf7-tab.cf7-tab-3.cf7-new-tab .multistep-nav {
    display: none;
}

.order-services .product-box.have-online-mobile {
    display: none;
}

#sum-box-mobile {
    display: none;
    width: 100%;
}

#sum-box-mobile .sum-box-mobile {
    padding: 15px 0;
}

#sum-box-mobile .sum-box-mobile .wpcf7-response-output-final {
    margin: 0;
}

.order-services #summary.stuck {
    display: none;  
}

.order-services .summary-unstack {
    position: sticky;
    top: 50px;
}

@media (min-width: 3180px) {
    .order-services {
        flex-direction: column;
    }
}


@media (max-width: 1280px) {
   
    .order-services .products {
        flex-direction: column;
    }
   
    .order-services .products .summary-unstack {
        margin-left: auto;
        margin-right: auto;
    }
   
    #summary {
        align-self: center;
    }
     
    .order-services {
        padding: 0 20px;
    }
   
    #summary .sum-box {
        display: none;
    }
   
    #summary #sum-box-mobile {
        display: block;
    }
   
    .order-services .product-box.have-online-mobile {
        display: block;
    }
   
    .order-services-3 .summary-products-mobile {
        display: block;
    }
   
    .order-services-3 .summary-products {
        display: none;
    }
}

@media (max-width: 1050px) {
   
    #main-menu {
        padding-bottom: 0;
    }
   
    .order-services {
        background: url(/wp-content/uploads/2024/09/top-image-mob.png) #fff top center no-repeat !important;
    }
   
    .order-services .header-tags, .order-services .products-list-items .title {
        display: none;
    }
   
    .order-services .header-left h1, .order-services .header-left p {
        text-align: center;
    }
   
    .order-services .header-left .box-desc p {
        text-align: left;
    }
   
    .order-services .header-left .box {
        margin-top: 30px;
    }
   
    .order-services .product-name {
        margin-left: 40px;
    }
   
   
   
}

@media (max-width: 790px) {
   
    .order-services {
        padding: 0;
    }
   
    .order-services .top {
        padding: 0 15px 80px 15px;
    }
   
    .fl-row[data-node]>.fl-row-content-wrap {
        padding: 0;
    }
   
     .order-services .products {
        width: 100%;
    }
   
    .order-services .product-box-item {
        height: auto;
        flex-direction: column;
        align-items: flex-start;
    }
   
    .order-services .product-icon {
    position: absolute;
    left: 10px;
    top: 15px;
}

   .order-services .input.sub, .order-services .input.sub select, .order-services .input.sub input, .order-services .input.var,
   .order-services .input.var select, .order-services .input.var input,  .order-services .input.num, .order-services .input.num select,
   .order-services .input.num input, .order-services-2 .post-code input, .order-services-2 .city input, .order-services .input span.wpcf7-form-control-wrap, .order-services .product-open-details .det-col1, .order-services-2 .form, .order-services-2 .form-content-item, .order-services-3 .form, .order-services-3 .summary-details .details-item, .order-services #group-mag-duo.cf7-group {
    width: 100%;
  }
 
  .order-services .product-open-details .box {
      flex-direction: column;
      align-items: start;
  }

    .order-services-2 .form-content, .order-services-3 .summary-details {
        flex-direction: column;
    }
   
    .order-services-2 .two-items::before {
        display: none;
    }
   
    .order-services-3 .summary-price {
        flex-direction: column;
        align-items: center;
    }
   
    .order-services-3 .summary-prices {
        align-items: center;
    }
   
    .order-services-3 .summary-price h3 {
        text-align: center;
    }
   
    .order-services-3 .summary-products-mobile .sum-product-item {
        display: flex;
    }
   
    .order-services .header-left h1, .order-services-2 .main h1, .order-services-3 .main h1 {
        font-size: 32px;
        line-height: 32px;
    }
   
    .order-services-2 .form-header h2, .order-services-3 .form-header h2 {
        font-size: 22px;
        line-height: 28px;
    }
   
    .order-services-2 .legend, .order-services-3 .summary-products-mobile h3, .order-services-3 .summary-price h3 {
        font-size: 18px;
        line-height: 22px;    
    }
   
    .order-services .header-left p {
        font-size: 16px;
        line-height: 26px;
    }
   
    .order-services .main h2 {
        font-size: 24px;
        line-height: 32px;
    }
   
    .order-services-2 .main .form, .order-services-3 .main .form {
        padding: 30px 15px;
    }
   
    .wpcf7-form-control span.wpcf7-list-item {
    margin: 10px 0!important;
    }
   
    .order-services-2 .wpcf7-submit-container {
        justify-content: center;
        margin-top: 10px;
    }
   
    .order-services .header-left .box-item {
        align-items: flex-start;
    }
   
    .order-services .header-left .box-item .box-desc-row {
        flex-direction: row;
        align-items: flex-start;
        flex-wrap: wrap;
    }
   
    .order-services #summary.stuck {
        position: -webkit-sticky;
   position: sticky;
        bottom: -10px;
        display: block;
        z-index: 1;
        width: 100%;
    }
   
    .order-services #summary.unstuck {
   overflow-y: visible;
   position: relative;
   z-index: 1;
   margin-left: auto;
        margin-right: auto;
        top: auto;
        width: 100%;
    }
   
    .order-services .main {
        width: 100%;
        margin-bottom: -350px;
    }
   
    .order-services .summary-unstack {
        position: relative;
        top: 0;
        width: 100%;
        text-align: center;
        background: #fff;
        padding-bottom: 180px;
        z-index: 11;
    }
   
    .footer-wrapper {
        z-index: 10;
    }
   
    .order-services .summary-mobile {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        padding: 12px 15px 0;
    }
   
    .order-services .sum-mob-title {
        font-weight: 600;
        line-height: 22px;
    }
   
    .order-services .stuck .sum {
        padding: 0;
        flex: 0 auto;
        border-top-width: 0;
        border-top-style: none;
        border-color: transparent;
        align-items: flex-end;
        gap:0;
    }
   
    .order-services .stuck .net-amount {
        font-size: 20px;
        text-align: right;
    }
   
    .order-services .stuck .net-amount #net-amount-sticky {
        font-size: 20px;
    }
   
    .order-services .stuck .net-amount>span {
        font-size: 16px;
    }
   
    .order-services .stuck .next-button {
    padding: 0 30px 20px;
    }
   
    body.responsive-layout #scroll-to-top {
        bottom: 10px;
    }
   
    .order-services #summary .header {
        font-size: 16px;
        line-height: 22px;
        font-weight: 600;
        align-items: center;
    }
   
    .order-services-3 input.wpcf7-form-control.wpcf7-submit.has-spinner {
        margin-top: 0!important;
    }
   
    .order-services-3 .wpcf7-submit-container {
        justify-content: center;
    }
   
    .order-services .header-left .box-item .box-desc-row .title {
        flex-basis: 100%;
    }
   
}
/* End Layout CSS */


                                
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        
        
        
        
		
        
		
        
        			.fl-node-f5sxd4zlg7wi .fl-row-content {
				min-width: 0px;
			}
		