/* 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:before,
.fl-module: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:after,
.fl-module-content:after {
	clear: both;
}
.fl-clear {
	clear: both;
}

/* 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;
}

/* 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%;
  	transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%); /* IE 9 */
	-webkit-transform: translate(-50%, -50%); /* Chrome, Safari, Opera */
}
.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 {
	align-items: center;
	justify-content: center;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-align: center;
	-ms-flex-pack: 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 {
	align-items: flex-end;
	justify-content: flex-end;
	-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;
}

/* 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 {
	align-items: center;
	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-module,
.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;
}

/* Modules
------------------------------------------------------ */

.fl-module img {
	max-width: 100%;
}

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

.fl-builder-module-template {
	margin: 0 auto;
	max-width: 1100px;
	padding: 20px;
}

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

.fl-builder-content a.fl-button,
.fl-builder-content a.fl-button:visited {
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-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 {
	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-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;
	-moz-box-shadow: none;
	-webkit-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;
	-moz-box-shadow: none !important;
	-webkit-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;
	-moz-box-shadow: none !important;
	-webkit-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;
}
.fl-builder-preview .fl-animation,
.fl-builder-edit .fl-animation,
.fl-animated {
	opacity: 1;
}
.fl-animated {
	animation-fill-mode: both;
	-webkit-animation-fill-mode: both;
}

/* Button Icon Animation */
.fl-button.fl-button-icon-animation i {
	width: 0 !important;
	opacity: 0;
	-ms-filter: "alpha(opacity=0)";
	transition: all 0.2s ease-out;
	-webkit-transition: all 0.2s ease-out;
}
.fl-button.fl-button-icon-animation:hover i {
	opacity: 1! important;
    -ms-filter: "alpha(opacity=100)";
}
.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;
}

/* 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;
	}
}
@media (max-width: 1200px) { /**
 * Styles needed for the large breakpoint.
 */
 }@media (max-width: 1024px) { /* 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: 768px) { /* 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;
}
 }@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: 1025px) 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: 769px) and (max-width: 1024px) {
	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: 768px) {
	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-row-fixed-width {
	max-width: 1200px;
}
.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-col-content {
	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-module-content, :where(.fl-module:not(:has(> .fl-module-content))) {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
@media(max-width: 768px) {
	.fl-row[data-node] > .fl-row-content-wrap {
		padding-top: 10px;
		padding-right: 10px;
		padding-bottom: 10px;
		padding-left: 10px;
	}
}
.page .fl-post-header, .single-fl-builder-template .fl-post-header { display:none; }









.fl-node-5dd6aa7ce33f9 {
	width: 100%;
}
.fl-builder-content .fl-rich-text strong {
	font-weight: bold;
}

/* Start Global CSS */
/*===== Page Width =====*/
.fl-page {
    max-width: 1400px;     
}
/*======================*/

/*=== z-index Issue fix ===*/
.pp-infolist-wrap .pp-list-item {z-index: 1 !important;}
.pp-icon-wrapper {z-index: 1 !important;}
.variation-boxes .variable-items-wrapper li.variable-item.button-variable-item.selected:after {z-index: 1 !important;}

/* Extra Info */
.extra-info{
    border: 1px solid #f0f0f0;
    border-radius: 4px;
    background: #fff;
    padding: 30px 24px 10px;
    margin: 0 0 8px;
}
.extra-info ul li{
    overflow: hidden;
    margin: 0 0 20px;
}
.extra-info ul img{
    float: left;
    max-width: 30px;
}
.extra-info ul .txt{
    padding:0 0 0 20px;
    overflow: hidden;
}
.extra-info ul .txt .title{
    display: block;
    font-size: 14px;
    line-height: 18px;
    font-weight: 600;
}
.extra-info ul .txt .title span{ font-weight:400; }
.extra-info ul .txt .value{
    display: block;
    font-size: 12px;
    line-height: 16px;
    color: #888;
}
.extra-info ul .txt .value strong{ 
    font-weight: 600; 
    color: #333;
}/* Extra Info */
.extra-info{
    border: 1px solid #f0f0f0;
    border-radius: 4px;
    background: #fff;
    padding: 30px 24px 10px;
    margin: 0 0 8px;
}
.extra-info ul li{
    overflow: hidden;
    margin: 0 0 20px;
}
.extra-info ul img{
    float: left;
    max-width: 30px;
}
.extra-info ul .txt{
    padding:0 0 0 20px;
    overflow: hidden;
}
.extra-info ul .txt .title{
    display: block;
    font-size: 14px;
    line-height: 18px;
    font-weight: 600;
}
.extra-info ul .txt .title span{ font-weight:400; }
.extra-info ul .txt .value{
    display: block;
    font-size: 12px;
    line-height: 16px;
    color: #888;
}
.extra-info ul .txt .value strong{ 
    font-weight: 600; 
    color: #333;
}
@media only screen and (max-width: 767px){
    .extra-info{ padding: 18px 12px 0; }
    .extra-info ul li{ margin: 0 0 16px; }
}
/* End Global CSS */


/* Start Global Nodes CSS */

/* End Global Nodes CSS */


/* Start Layout CSS */
/*=== SSO Removed/ Password reset check ===*/
.password-field-wrap,
#submit-button-wrap,
.preset-msg {display: none;}
.email-check-button.loading {
    background: url(/wp-content/uploads/2023/02/loader-small.gif) no-repeat right 10px center rgb(63 107 178 / 88%);
}    
/*===*/   
.woocommerce-account .woocommerce-MyAccount-content > h3 a.buttonul, ol {list-style: none; padding: 0; margin: 0;}
.woocommerce-error li strong:first-child{ display:none;}
/*=== Contact Lens List ===*/
.cl-panel .pres-edit { display: none; }
.cl-panel .pres-values{ width: 100%;}
.cl-panel .js-prescription-list ul li span.js-box5{margin-left:0; }
/*=== Prescriptions List ===*/
.saved-presc {
    background: #f6f6f6;
    padding: 40px;
}
.js-table-responsive {
    width: 100%;
    max-width: 670px;
    float: none !important;
    margin: 0 auto;
}	
.js-table-responsive table.shop_table_responsive td {
    border: none;
    width: 100%;
	padding: 0;
	padding-bottom: 35px;
	background: none !important;
}
.rx-uname, .pres-date,.cl-uname {
    float: left;
    width: 50%;
    background: #e4e4e4;
    padding: 10px 18px;
    font-weight: 700;
    color: #000;
    text-align: left;
}
.pres-date { 
	text-align: right;
	font-weight: 400;	
}
.pres-date span {
	color: #444444;
}
.pres-values {
    float: left;
    width: 75%;
    background: #fff !important;
    padding: 7px 18px 0px;
}
.pres-edit {
    float: left;
    width: 25%;
    height: 100%;
    background: #fff !important;
}
.shop_table_responsive .pres-img{ display:none !important; }
.js-prescription-list {
    max-width: 420px;
    float: left;
    width: 100%;
}
.js-prescription-list ul li.js-heading {
    background: none;
    color: #444444;
    font-weight: 400;
    text-transform: uppercase;
    border: none;
    font-size: 12px;
}
.js-prescription-list ul li.js-heading span {
    padding: 5px 6px;
}
.js-prescription-list ul li span.js-box1 {
    width: 115px;
    padding-left: 0;
    padding-right: 0;
    float: left;
    text-align: left;
}
.js-prescription-list ul li span.js-box2 {
    width: 70px;
}
.js-prescription-list ul li span.js-box3 {
    width: 70px;
}
.js-prescription-list ul li span.js-box4 {
    width: 70px;
}
.js-prescription-list ul li span.js-box5 {
    width: 65px;
    margin-left: 19px;
}
.pres-edit {
    float: left;
    width: 25%;
    height: 100%;
    background: #fff;
    min-height: 105px;
    padding-top: 49px;
	text-align: right;
    padding-right: 0;
}
.pres-edit label {
	background: #000;
    color: #fff;
    width: 110px;
    height: 47px;
    line-height: 45px;
    text-transform: uppercase;
    font-weight: 400;
    margin: 0;
	cursor: pointer;
	text-align: center;  
}
.pres-edit label:hover {	
	background: #616161;
}	
.pres-edit input {
	position: absolute;
    opacity: 0;
}

.form-row{ display:block; }
label{ font-weight:400 !important; }
.woocommerce form .form-row label{
    line-height: 16px !important;
}

.select2-container--default .select2-selection--single{
    border: 1px solid #ddd !important;
    height: 42px !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered{ 
    line-height: 42px !important; 
    padding-left: 12px !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow { height: 40px !important; }
/* Sidebar */
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation{ width: 22%; }
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li.is-active, 
.woocommerce-page .woocommerce .woocommerce-MyAccount-navigation ul li.is-active{ /*font-weight:700;*/ text-decoration:underline; }
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li, 
.woocommerce-page .woocommerce .woocommerce-MyAccount-navigation ul li{
    font-size: 16px;
    line-height: 20px;
    font-weight: 300;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li:first-child, 
.woocommerce-page .woocommerce .woocommerce-MyAccount-navigation ul li:first-child{ border:none; }
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li a, 
.woocommerce-page .woocommerce .woocommerce-MyAccount-navigation ul li a{ 
   /* color:#3f3f3f; */
    padding: 15px 0;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li a:hover, 
.woocommerce-page .woocommerce .woocommerce-MyAccount-navigation ul li a:hover{ 
    text-decoration: underline; 
    color: #4a7ed6;
}

/* Account Form */
.woocommerce-account .woocommerce form .form-row input.input-text, 
.woocommerce-account .woocommerce form .form-row textarea{
    height: 44px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 0;
}
.woocommerce table.my_account_orders .button {
    /*margin-right: 5px;*/
    display: block;
    text-align: center;
    margin-bottom: 5px;
    max-width: 100%;
    font-size: 14px !important;
    width: 200px;
    text-transform: capitalize;
    margin: 5px auto;
}
.woocommerce-account .addresses .title h3{ text-transform: uppercase; }
.woocommerce-table--order-details .woocommerce-table__line-item.order_item.bundle_table_item,
.woocommerce-table--order-details .woocommerce-table__line-item.order_item.bundled_table_item { display: none !important; }
/*================ MJ =================*/

input[type=text], input[type=password], input[type=email], input[type=tel], input[type=date], input[type=month], 
input[type=week], input[type=time], input[type=number], input[type=search], input[type=url], textarea {font-size: 16px !Important;}

/* saved Prescriptions */
p.no-pres-text {border: 1px solid #de0000;background: #ffe5e5;padding: 10px 20px;}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content {width: 78%;padding-left: 86px; margin: 0;}
.woocommerce-account .woocommerce-MyAccount-content form > h3,
.woocommerce-account .woocommerce-MyAccount-content > h3{
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    color: #333333;
    margin: 0 0 20px;
    text-transform: uppercase;
}
.woocommerce-account .woocommerce-MyAccount-content > h3 a.button {float: right; margin: 5px 0 0; text-transform: none;display: none !important;}
.js-table-responsive {max-width: 700px;margin: 30px 0 0;}
.filter-area {float: left;width: 100%;margin-bottom: 20px;}
.filter-area form { overflow:hidden; float: right; }
.filter-area form input[type="submit"]{ font-size: 16px !important;  border-radius: 4px;}
.filter-area form label{ vertical-align:middle; margin:0 5px 0 0; }
.filter-area form #filter_by_name{ height: 31px; display: inline-block; vertical-align: middle; border: 1px solid #999;}
.panel.panel-default {margin-top: 30px;padding-top: 0;border-top: 1px dotted #bfbfbf;}
table.shop_table_responsive {width: 100%;}
table.shop_table_responsive tbody td,
table.shop_table_responsive thead th{ text-align: center; }
.presc-header {float: left;width: 100%;background: #e4e4e4;}
.pres-values {width: 90%;}
.js-prescription-list ul li {float: left;width: 100%; border-bottom: 1px solid #ddd !important;}
.js-prescription-list {max-width: 100%;width: 100%;}
.js-prescription-list ul li span {display: inline-block;text-align: center;max-width: 15%; padding: 5px !important;}
.js-prescription-list ul li span.js-box1 {max-width: 23%;}
.pres-edit {width: 10%;}
.js-prescription-list ul li span.js-box5 {width: 70px;margin-left: 0;}
.woocommerce-page .woocommerce-address-fields button[type=submit]{ margin: 10px 0 0 3px; }

.payment-method-actions a.button {
    line-height: 1;
}
.pres-edit a.button.prescription-add-to-cart{ line-height:1; }
.aiowps-captcha-equation input[type=text]{height:49px;border-radius:0;}
@media(max-width:1200px){
    .cl-panel .js-prescription-list{max-width:100%;}
}
@media(max-width:1024px){
    .woocommerce-account .woocommerce .woocommerce-MyAccount-navigation{ width: 30%; }
    .woocommerce-account .woocommerce .woocommerce-MyAccount-content {width: 70%;padding-left: 40px; margin: 0;}
    .woocommerce-account .woocommerce-MyAccount-content form > h3, 
    .woocommerce-account .woocommerce-MyAccount-content > h3{
        font-size: 24px;
        line-height: 28px;
    }
    .cl-panel .js-prescription-list ul li.heading span.js-box1{ display:none;}
    .js-prescription-list ul li {width: 40%;font-size: 14px;}
    .js-prescription-list ul li.js-heading {width: 20%;}
    .js-prescription-list ul li span.js-box1 {min-height: 33px;text-align: center;}
    .js-prescription-list ul li.js-heading span {text-align: left;font-weight: 600;padding: 3px 5px !important;}
    .js-prescription-list ul li span {text-align: center;width: 100% !important;max-width: 100% !important;padding: 3px 0 4px;min-height: 32px;float: left;}
    .js-prescription-list ul li.js-heading span.js-box1{visibility:hidden;}.pres-values {width: 88%;} .pres-edit{ padding-top: 86px; }
}
@media (max-width: 992px) {
    .pres-values {width: 85%;padding: 7px 0 0px;}
    .js-prescription-list ul li span.js-box1 {font-size: 14px;}
    .js-prescription-list ul li span {float: left;}
    .pres-edit {width: 15%;padding-right: 0;}
    .woocommerce-account .woocommerce .woocommerce-MyAccount-navigation{ width: 100%; }
    .woocommerce-account .woocommerce .woocommerce-MyAccount-content {width: 100%;padding-left: 0; margin: 0;}
}    
@media (max-width: 768px) {.woocommerce table.shop_table_responsive thead, .woocommerce-page table.shop_table_responsive thead {display: none;}
    .woocommerce-account .woocommerce table.shop_table_responsive tr td{ text-align:left !important; }
    .woocommerce table.shop_table_responsive tr td::before, 
    .woocommerce-page table.shop_table_responsive tr td::before {display: none;}
    .woocommerce-account .woocommerce-MyAccount-content {padding-left: 0;}
    .pres-values {width: 100%;}
    .pres-edit {width: 100%;height: auto;min-height: auto;padding: 0;margin: 20px 0;text-align: center;}
    .woocommerce table.shop_table_responsive tr, .woocommerce-page table.shop_table_responsive tr, .woocommerce table.shop_table_responsive tr td, .woocommerce-page table.shop_table_responsive tr td { display: block;}
    /* Sidebar and Account settings */
    .woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li a, 
    .woocommerce-page .woocommerce .woocommerce-MyAccount-navigation ul li a{ padding:8px 0; }
    .woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li, 
    .woocommerce-page .woocommerce .woocommerce-MyAccount-navigation ul li{
        font-size: 14px;
        line-height: 18px;
    }.filter-area form {
        float: none; 
        text-align: center;
    }
    .woocommerce-account .woocommerce .woocommerce-MyAccount-navigation{ width: 100%; }
    .woocommerce-account .woocommerce .woocommerce-MyAccount-content {width: 100%;padding-left: 0; margin:0;}
    .woocommerce-account .woocommerce-MyAccount-content form > h3, 
    .woocommerce-account .woocommerce-MyAccount-content > h3{
        font-size: 20px;
        line-height: 24px;
    }.js-table-responsive{ max-width: inherit !important; }
    .woocommerce-account .woocommerce-MyAccount-content > h3 a.button{ 
        float:none; 
        margin: 10px 0 0;
        display: block;
        max-width: 200px;
        text-align: center;
    } .woocommerce-account .woocommerce .woocommerce-MyAccount-content > .button{display: block !important; max-width: 200px !important; text-align: center !important; margin: 0 auto !important;}
    .woocommerce-account .woocommerce table.woocommerce-MyAccount-paymentMethods tr td{ text-align:right !important; } table.woocommerce-MyAccount-paymentMethods tr td:before{ float: left; font-weight:700; content:attr(data-title) ": " !important; display:block !important; padding: 0 10px 0 0; } table.woocommerce-MyAccount-paymentMethods tr td.payment-method-actions:before{ display: none !important; } .woocommerce table.woocommerce-MyAccount-paymentMethods tr td.payment-method-actions{ text-align:center !important; } table.woocommerce-MyAccount-paymentMethods tr td .view{ display:inline; }
}

/* Add Prescription */
.cpf-section.sp-prescription-options {float: left;}
.prescription-user-info {float: left;width: 100%;margin-bottom: 30px;padding-bottom: 30px;border-bottom: 1px dotted #ddd;}
.prescription-type-area {margin: 0;float: left;width: 100%;}
.type-wrapper {float: left;width: 50%;padding: 10px;position: relative;}
.type-wrapper:first-child {padding-left: 0;}
.type-wrapper:last-child {padding-right: 0;}
.type-wrapper input {position: absolute;top: 15px;}
.prescription-type-area .type-wrapper input[type="radio"]{display:none;}
.type-wrapper label {position: relative;padding-left: 30px; font-weight:400;}
.type-wrapper label:before {content: "";position: absolute;width: 20px;height: 20px;background: #fff;left: 0;border: 1px solid #ddd;}
.type-wrapper label:after {
    content: '';top: 2px;right: auto;margin: 0 auto;bottom: 0;padding: 0 0 2px;position: absolute;z-index: 99;cursor: pointer;left: 2px;line-height: 1.3;
    height: 16px;display: none;background: url(/wp-content/uploads/2020/05/var-selected.png) no-repeat center center #ffffff;background-size: 11px;width: 16px;
}
.type-wrapper input[type=radio]:checked + label:after {display: block;}
#existing_memebers {display: none;}
#existing_memebers select {width: 100%;height: 44px;border: 1px solid #ddd;padding: 0 10px;}
#existing_memebers select::-ms-expand{ background:none;}
.presc-name.nameclass {float: left;width: 50%;padding: 10px;}
.presc-name.nameclass:nth-of-type(even) {padding-right: 0;}
.presc-name.nameclass:nth-of-type(odd) {padding-left: 0;}
.presc-name.nameclass input {height: 44px;background: #fff;border: 1px solid #ddd;border-radius: 0;}
.eye-wrapper {float: left;width: 100%;}
.separator {float: left;width: 100%;padding-bottom: 30px;border-bottom: 1px dotted #ddd;}
.eye-wrapper .tm-cell.cpf-type-header {float: left;width: 25%;text-align: left;padding: 0;padding-top: 35px;}
.eye-wrapper select::-ms-expand { background: #fff !important; border: 0; }
.eye-wrapper .tm-cell {float: left;width: 15%;text-align: center;padding: 0 5px;}
.eye-wrapper .tm-cell label {font-size: 14px;margin: 0;width: 100%;}
.eye-wrapper .tm-cell select, .eye-wrapper .tm-cell input {width: 100%;height: 44px;font-size: 16px;padding: 0 10px;border: 1px solid #ddd;border-radius: 0;background: #fff;}
.eye-wrapper .tm-cell ul{ margin:0;}
.presc-date {margin:0 0 30px;float: left;width: 50%;}
.presc-date input.full_date {background: url(/wp-content/uploads/2020/05/cal-ico.png) no-repeat right 10px center;height: 44px;border: 1px solid #ddd;border-radius: 0;background-size: 24px;}
.presc-upload {float: left;width: 100%;margin-bottom: 30px;padding: 0;text-align: center;border: 2px dashed #8ba7d7;position: relative;min-height: 122px;max-width: 445px;}
.presc-upload label {
    display: block;background: url(/wp-content/themes/bb-theme-child/assets/images/camera.png) no-repeat center top 35px;font-size: 14px;color: #8ba7d7;font-weight: 600;
    text-transform: capitalize;width: 100%;height: 122px;line-height: 130px;left: 0;z-index: 0;top: 0;position: absolute;padding-top: 10px;    background-size: 26px;
}
.presc-upload input {opacity: 0;z-index: 2;width: 100%;height: 122px;cursor: pointer;}
.file-preview {float: left;width: 100%;padding: 10px;display: none;}
.file-preview img.dynamic {max-height: 280px;}
.file-preview .clear-img {right: 3px;top: 3px;width: 25px;height: 25px;border-radius: 100%;cursor: pointer;position: absolute;z-index: 999;background: rgba(255, 0, 0, 0.7);color: #fff;}

@media (max-width: 540px) { 
    .prescription-type-area {margin-bottom: 20px;}
    .prescription-user-info {margin-bottom: 20px;padding-bottom: 20px;}
    .eye-wrapper {float: inherit;width: 40%;}
    .eye-wrapper.right-eye {margin-left: 20%;}
    .eye-wrapper .tm-cell {width: 100%;max-width: 100%;margin-bottom: 15px; position: relative;}
    .eye-wrapper .tm-cell.cpf-type-header {width: 100%;text-align: center;padding-top: 10px;}
    .eye-wrapper .tm-cell > label {position: absolute;left: -50px;width: auto;top: 11px;}
    .separator {padding-bottom: 20px;}
    .presc-date {
        margin: 0; padding: 20px 0 30px;
        float:none;
        width: 100%;
        clear: both;
    }
    .presc-name.nameclass,
    .type-wrapper {
        float:none;
        width: 100%;
        clear: both;
        padding: 0 0 10px;
    }
}    
/*=====================================*/

/*=========== Pagination =============*/
ul.pagination {margin:0; padding:0; list-style:none; overflow:hidden; float: right;}
ul.pagination li:last-child{ float:right; }
ul.pagination li{ float:left; margin-left:5px; }
ul.pagination li a {display: block;padding: 8px 20px 6px;background: #3f6bb2;color: #fff;line-height: 18px;font-size: 14px; border-radius:4px;}
ul.pagination li.disabled a {color:#999; pointer-events: none; background:#eee}
ul.pagination li.active a {background: #3f6bb2;}

/*========== Error Messages ==========*/
span.error {margin-top: 5px;}
.presc-upload span.error {position: absolute;bottom: -25px;left: -3px;}
/*====================================*/

/* Order Styling */
.woocommerce-order .woocommerce-notice{ color: #416cb3; }
.woocommerce .woocommerce-order ul.order_details{
	padding:18px 22px 12px;
	border-radius: 4px;
	float:right;
	min-width: 340px;
	margin: 0 0 0 24px;
	background: #fff !important;
}
.woocommerce .woocommerce-order ul.order_details li{
	float:none;
	border:none;
	padding: 0 0 5px;
	color: #000;
	font-size: 14px;
	line-height: 18px;
	text-transform: none;
	font-weight: 600;
	margin: 0;
/* 	max-width:300px; */
}
.woocommerce .woocommerce-order ul.order_details li strong{
	float:right;
	font-weight: 400;
	font-size: 14px;
	line-height: 18px;
	text-align: left !important;
	min-width:200px;
	margin: 0 0 0 12px;
}
.woocommerce .woocommerce-order-details{ 
	overflow: hidden;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 4px;
	padding: 22px 22px 5px;
	margin: 0 0 8px;
}
.woocommerce .woocommerce-order-details .woocommerce-order-details__title{
	text-transform: uppercase;
	color: #000;
	font-size: 16px;
	line-height: 20px;
	border-bottom: 1px solid #ddd;
	padding: 0 0px 14px;
}
.woocommerce .woocommerce-order-details .order-again{ display:none !important; }
.woocommerce .woocommerce-order-details table{
	border: none;
	background: none;
	border-radius: 0;
}
.woocommerce .woocommerce-order-details table tr th{ display: none; }
.woocommerce .woocommerce-order-details table tr td{
	padding: 10px 0;
	border:none;
	border-bottom: 1px solid #ddd !important;
	vertical-align: top;
	font-weight: 600;
	font-size: 14px;
	line-height: 18px !important;
	color: #000;
}
.woocommerce .woocommerce-order-details table tr td.product-name{
	max-width: 80%;
}
.woocommerce .woocommerce-order-details table tr .product-quantity{ display:none; }
.woocommerce .woocommerce-order-details table tr a{
	color: #000;
}
.woocommerce .woocommerce-order-details .wc-item-meta{
	padding: 0;
	font-weight: 400;
}
.woocommerce .woocommerce-order-details .wc-item-meta li{
	float: none;
	padding: 0;
	border:none;
	line-height: 18px !important;
}
.woocommerce .woocommerce-order-details .wc-item-meta li strong.wc-item-meta-label{ display: none; }
.woocommerce .woocommerce-order-details table tr td.product-total{
	text-align: right;
}
.woocommerce .woocommerce-order-details table tr td.product-total .amount{
	font-size: 14px;
	line-height: 18px !important;
	color: #000;
}
.woocommerce .woocommerce-order-details .bundled_table_item .bundled_table_item_indent,
.woocommerce .woocommerce-order-details .component_table_item .component_table_item_indent{ padding: 0 }
.woocommerce .woocommerce-order-details dl.component dt{ display:none; }
.woocommerce .woocommerce-order-details dl.component .composited_product_quantity{ display: none; }

.woocommerce .woocommerce-order-details table tr td .component_table_item_subtotal{
	
}
.woocommerce .woocommerce-order-details table tr td .component_table_item_subtotal:before{
	display:none;
}
.woocommerce .woocommerce-order-details table tr td .component_table_item_subtotal{
	font-size: 0;
	line-height: 0;
}
.woocommerce .woocommerce-order-details table tfoot{
	text-align: right;
}
.woocommerce .woocommerce-order-details table tfoot tr th{
	display: table-cell;
	padding: 0;
	border:none;
	border-bottom: 1px solid #ddd;
}
.woocommerce .woocommerce-order-details table tfoot tr:last-child th{
	border:none;
	color: #000;
	text-align: left;
}
.woocommerce .woocommerce-order-details table tfoot tr:last-child td{
	border:none !important;
}
.woocommerce-customer-details .woocommerce-column{
	border: 1px solid #ddd;
	border-radius: 4px;
	background: #fff;
	padding: 14px 20px !important;
	width:calc(50% - 4px) !important;
}
.woocommerce-customer-details .woocommerce-column .woocommerce-column__title{
	font-size: 16px;
	line-height: 20px;
	margin: 0 0 10px;
	padding: 0 0 8px;
	text-transform: uppercase;
	border-bottom: 1px solid #ddd;
}
.woocommerce-customer-details .woocommerce-column address{
	border:none;
	padding:0;
	font-size:14px;
	line-height: 24px;
}
.woocommerce .woocommerce-order-details .wc-item-meta li:last-child{ display:none; }
/* Prescription Table */
.woocommerce .woocommerce-order-details table .bundle_table_item .component{ display:none; }
.woocommerce .woocommerce-order-details table .bundle_table_item td{
	border:none !important;
	padding: 10px 0 0;
}
.woocommerce .woocommerce-order-details table .bundle_table_item td.product-total{ display: none; }
.woocommerce td.product-name .wc-item-meta{ display:none; }
.woocommerce .woocommerce-order-details table .bundle_table_item .wc-item-meta{
	background: #f9f9f9;
	overflow: hidden;
	padding: 14px;
	border-radius: 4px 4px 0 0;
	border: 1px solid #f0f0f0;
}
.woocommerce .woocommerce-order-details table .bundle_table_item .wc-item-meta li:nth-child(4),
.woocommerce .woocommerce-order-details table .bundle_table_item .wc-item-meta li:nth-child(6),
.woocommerce .woocommerce-order-details table .bundle_table_item .wc-item-meta li:nth-child(7),
.woocommerce .woocommerce-order-details table .bundle_table_item .wc-item-meta li:first-child{
	display: none;
}

.woocommerce .woocommerce-order-details table .bundle_table_item .wc-item-meta li:nth-child(2),
.woocommerce .woocommerce-order-details table .bundle_table_item .wc-item-meta li:nth-child(3){
	float: left;
	margin-right: 5px;
	font-weight: 600;
}
/*.woocommerce .woocommerce-order-details table .bundle_table_item .wc-item-meta li:nth-child(5){*/
/*	float: right;*/
/*}*/

/* Prescription body table */
.woocommerce .woocommerce-order-details table .bundled_table_item td.product-total{ display: none; }
.woocommerce .woocommerce-order-details table .bundled_table_item td{
	border-bottom: 1px solid #f0f0f0 !important;
	border-left: 1px solid #f0f0f0 !important;
	border-right: 1px solid #f0f0f0 !important;
	text-align: right;
}

/* .woocommerce .woocommerce-order-details table tr:nth-child(5) td{
	border-top: 1px solid #f0f0f0 !important;
} */
.woocommerce .woocommerce-order-details table tr:nth-child(6) td .wc-item-meta li strong.wc-item-meta-label{
	display:none!important;
}
.woocommerce .woocommerce-order-details table .bundled_table_item td .wc-item-meta li strong.wc-item-meta-label{
	display: block;
	float: none;
	color: #666;
	font-weight: 400;
	text-transform: uppercase;
	padding: 0 0 6px;
	margin: 0;
/* 	margin: 0 0 10px; */
/* 	border-bottom: 1px solid #f0f0f0; */
}
.woocommerce .woocommerce-order-details table .bundled_table_item td .wc-item-meta{
	display: inline-block;
	vertical-align: bottom;
	width: calc(100% - 72px);
	margin: 0 0 0 10px;
}
.woocommerce .woocommerce-order-details table .bundled_table_item td .wc-item-meta li{
	float:left;
	width: 25%;
	text-align: center;
	padding: 0 5px;
}
.woocommerce .woocommerce-order-details table .bundled_table_item td .bundled-product-name{ 
	padding:0 14px 0;
	color: #666;
	font-weight: 400;
}

@media (max-width:1024px){
	.woocommerce .woocommerce-order ul.order_details{
		float: none;
		margin: 0 0 8px;
		
	}
}
@media (max-width: 768px){
	.woocommerce-customer-details .woocommerce-column{
		width: 100% !important;
		float:none;
		margin: 0 0 8px;
		padding: 12px !important;
	}
	.woocommerce .woocommerce-order ul.order_details li strong{
		min-width: 180px;
	}
	.woocommerce .woocommerce-order ul.order_details{ padding: 12px; }
	.woocommerce .woocommerce-order-details{
		padding: 12px 12px 0;
	}
	.woocommerce .woocommerce-order-details .woocommerce-order-details__title{
		padding: 0 6px;
	}
	.woocommerce .woocommerce-order-details table .bundled_table_item,
	.woocommerce .woocommerce-order-details table .bundle_table_item{ display: none !important; }
}

/* My Account */
.woocommerce-MyAccount-navigation-link--edit-account,
.woocommerce-MyAccount-navigation-link--downloads{ display:none; }

/* Forgot Password */
.woocommerce-account form.woocommerce-ResetPassword {
    max-width: 488px;
    margin: 0 auto 80px;
}
.woocommerce-account form.woocommerce-ResetPassword h2{
    text-align: center;
    font-size: 40px;
    line-height: 47px;
    color: #333333;
    font-weight: 300;
    /*margin: 0 0 12px;*/
    margin: 0 0 32px;
    letter-spacing: -0.5px;
}
.woocommerce-account form.woocommerce-ResetPassword h2 strong{ font-weight:500; }
.woocommerce-account form.woocommerce-ResetPassword .form-wrap{
    background: #e1e4e7;
    border: 1px solid #b7b7b7;
    border-radius: 3px;
    padding: 33px 24px 22px;
    margin: 0 0 16px;
}
.woocommerce-account form.woocommerce-ResetPassword .form-row{
    padding: 0 !important;
    margin: 0 0 19px !important;
    display: block !important;
}
.woocommerce-account form.woocommerce-ResetPassword .form-row label{
    font-size: 14px;
    line-height: 18px;
    color: #333;
    margin: 0 0 4px;
    text-transform: capitalize;
}
.woocommerce-account form.woocommerce-ResetPassword .form-row input.input-text{ 
    height: 49px !important; 
    border-color: #c0c0bf !important;
}
.woocommerce-account form.woocommerce-ResetPassword .form-row button[type="submit"]{
    width: 100%;
    height: 61px;
    text-align: center;
    color: #fff;
    font-size: 20px;
    line-height: 23px;
    border:none;
    text-transform: uppercase;
    border-radius: 3px;
    margin: 0;
    float: none;
}
.woocommerce-account form.woocommerce-ResetPassword .lost-pass-txt{
    font-size: 14px;
    line-height: 18px;
    font-weight: 300;
    color: #333;
    text-align: center;
}

/* Login and Register */
#customer_login.u-columns{ margin:0 0 80px; }
#customer_login .u-column2{ display:none; }
#customer_login .u-column1,
#customer_login .u-column2{
    max-width: 488px;
    float: none !important;
    margin: 0 auto;
    width: auto !important;
}
.woocommerce-account .woocommerce form.login, 
.woocommerce-account .woocommerce form.register{
    border: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    margin: 0 0 55px;
}
.woocommerce-account .woocommerce form.register{ margin: 0 0 35px !important; }
.woocommerce-account .woocommerce form.login .password-input, 
.woocommerce-account .woocommerce form.register .password-input{ 
    display:block !important; 
    width:100%;
}
.woocommerce-account .woocommerce .u-column1 h2, 
.woocommerce-account .woocommerce .u-column2 h2{
    text-align: center;
    font-size: 40px;
    line-height: 47px;
    font-weight: 300;
    /*margin: 0 0 12px;*/
    margin: 0 0 32px;
    letter-spacing: -0.5px;
}
/*.woocommerce-account .woocommerce .u-column2 h2{ margin: 0 0 32px !important; }*/
.woocommerce-account .woocommerce .u-column1 h2 strong, 
.woocommerce-account .woocommerce .u-column2 h2 strong{ font-weight:500; }
.woocommerce-account .woocommerce form.login .form-wrap, 
.woocommerce-account .woocommerce form.register .form-wrap{
    background: #e1e4e7;
    border: 1px solid #b7b7b7;
    border-radius: 3px;
    padding: 33px 24px 22px;
    margin: 0 0 16px;
}
.woocommerce-account .woocommerce form.login .form-row label, 
.woocommerce-account .woocommerce form.register .form-row label{
    font-size: 14px;
    line-height: 18px;
    color: #333;
    margin: 0 0 4px;
    text-transform: capitalize;
}
.woocommerce-account .woocommerce form.login .form-row, 
.woocommerce-account .woocommerce form.register .form-row{
    padding: 0 !important;
    margin: 0 0 19px !important;
}
.woocommerce-account .woocommerce form.login .form-row.form-button, 
.woocommerce-account .woocommerce form.register .form-row.form-button{ margin: 0 !important; }
.woocommerce-account .woocommerce form.login .lost_password{
    text-align: center;
    font-weight: 700;
    color: #333;
    margin: 0;
    padding: 8px 0 0;
}
.woocommerce-account .woocommerce form.login .form-row input.input-text, 
.woocommerce-account .woocommerce form.login .form-row textarea,
.woocommerce-account .woocommerce form.register .form-row input.input-text, 
.woocommerce-account .woocommerce form.register .form-row textarea,
.woocommerce-account .woocommerce form.login #aiowps-captcha-answer{ 
    height: 49px !important; 
    border-color: #c0c0bf !important;
    border-radius: 0;
}
.woocommerce-account .woocommerce form.login .aiowps-captcha{ margin:0; }
.woocommerce-account .woocommerce form.login .form-row button[type="submit"], 
.woocommerce-account .woocommerce form.register .form-row button[type="submit"]{
    width: 100%;
    height: 61px;
    text-align: center;
    color: #fff;
    font-size: 20px !important;
    line-height: 23px !important;
    border:none;
    text-transform: uppercase;
    border-radius: 3px;
    margin: 0;
    float: none;
}
.woocommerce-account .woocommerce .u-column1 .form-footer,
.woocommerce-account .woocommerce .u-column2 .form-footer{ 
    text-align: center; 
    border-top: 3px solid #e3e3e3;
    padding: 29px 0 0;
}
.woocommerce-account .woocommerce .u-column1 .form-footer .title,
.woocommerce-account .woocommerce .u-column2 .form-footer .title{
    font-size: 40px;
    line-height: 44px;
    color: #333333;
    font-weight: 300;
    display: block;
    margin: 0 0 8px;
    letter-spacing: -0.5px;
}
.woocommerce-account .woocommerce .u-column1 .form-footer .title strong,
.woocommerce-account .woocommerce .u-column2 .form-footer .title strong{ font-weight:500; }
.woocommerce-account .woocommerce .u-column1 .form-footer .link,
.woocommerce-account .woocommerce .u-column2 .form-footer .link{
    font-size: 18px;
    line-height: 22px;
    font-weight: 700;
    text-decoration: underline;
}
.woocommerce-account .woocommerce .u-column2 .woocommerce-privacy-policy-text{
    font-size: 14px;
    line-height: 18px;
    font-weight: 300;
    color: #333;
    text-align: center;
    padding: 26px 0 0;
}
.woocommerce-account .woocommerce .u-column2 .woocommerce-privacy-policy-text a{ text-transform: capitalize; text-decoration:underline;}
/* Social Login button */
.woocommerce div.nsl-container-block .nsl-container-buttons{ padding:0; }
.woocommerce div.nsl-container-block .nsl-container-buttons a{ 
    margin:-6px 0 0; 
    max-width: 100%;
}
.woocommerce div.nsl-container .nsl-button {padding: 11px 5px;}
@media(max-width:1024px){
    .u-columns{ margin:0 0 60px; }
    .woocommerce-account form.woocommerce-ResetPassword h2,
    .woocommerce-account .woocommerce .u-column1 h2, 
    .woocommerce-account .woocommerce .u-column2 h2,
    .woocommerce-account .woocommerce .u-column1 .form-footer .title,
    .woocommerce-account .woocommerce .u-column2 .form-footer .title{
        font-size: 34px;
        line-height: 44px;
    }
    .woocommerce-account form.woocommerce-ResetPassword h2,
    .woocommerce-account .woocommerce .u-column1 h2, 
    .woocommerce-account .woocommerce .u-column2 h2{ margin: 0 0 22px; }
}
@media(max-width:768px){
    .woocommerce-account form.woocommerce-ResetPassword{ margin-bottom:30px; }
    .u-columns{ margin:0 0 30px; }
    #customer_login.u-columns {margin: 0 0 40px;}
    .woocommerce-account form.woocommerce-ResetPassword h2,
    .woocommerce-account .woocommerce .u-column1 h2, 
    .woocommerce-account .woocommerce .u-column2 h2,
    .woocommerce-account .woocommerce .u-column1 .form-footer .title,
    .woocommerce-account .woocommerce .u-column2 .form-footer .title{
        font-size: 24px;
        line-height: 28px;
    }
    .woocommerce-account form.woocommerce-ResetPassword h2,
    .woocommerce-account .woocommerce .u-column1 h2, 
    .woocommerce-account .woocommerce .u-column2 h2{ margin: 0 0 15px; }
    .woocommerce-account form.woocommerce-ResetPassword .form-wrap,
    .woocommerce-account .woocommerce form.login .form-wrap, 
    .woocommerce-account .woocommerce form.register .form-wrap{ padding: 15px 10px 0; }
    .woocommerce-account .woocommerce .u-column1 .form-footer .link, 
    .woocommerce-account .woocommerce .u-column2 .form-footer .link{
        font-size: 16px;
        line-height:20px;
    }
    .woocommerce-account .woocommerce .u-column2 .woocommerce-privacy-policy-text br{ display:none; }
    .woocommerce-account .woocommerce form.login .lost_password{ margin: 0 0 10px; }
}

/* Order Styling */
.woocommerce-order .woocommerce-notice{ color: #154432; }
.woocommerce .woocommerce-order ul.order_details{
	padding:18px 22px 12px;
	border-radius: 4px;
	float:right;
	min-width: 340px;
	margin: 0 0 0 24px;
	background: #fff !important;
}
.woocommerce .woocommerce-order ul.order_details li{
	float:none;
	border:none;
	padding: 0 0 5px;
	color: #000;
	font-size: 14px;
	line-height: 18px;
	text-transform: none;
	font-weight: 600;
	margin: 0;
/* 	max-width:300px; */
}
.woocommerce .woocommerce-order ul.order_details li strong{
	float:right;
	font-weight: 400;
	font-size: 14px;
	line-height: 18px;
	text-align: left !important;
	min-width:200px;
	margin: 0 0 0 12px;
}
.woocommerce .woocommerce-order-details{ 
	overflow: hidden;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 4px;
	padding: 22px 22px 5px;
	margin: 0 0 8px;
}
.woocommerce .woocommerce-order-details .woocommerce-order-details__title{
	text-transform: uppercase;
	color: #000;
	font-size: 16px;
	line-height: 20px;
	border-bottom: 1px solid #ddd;
	padding: 0 4px 14px;
	margin: 0;
}
.woocommerce .woocommerce-order-details table{
	border: none !important;
	background: none !important;
	border-radius: 0;
}
.woocommerce .woocommerce-order-details table tr th{ display: none; }
.woocommerce .woocommerce-order-details table tr td{
	padding: 10px 0;
	border:none !important;
	border-bottom: 1px solid #ddd !important;
	vertical-align: top;
	font-weight: 600;
	font-size: 14px;
	line-height: 18px !important;
	color: #000;
}
.woocommerce .woocommerce-order-details table tr td.product-name{
	max-width: 80%;
}
.woocommerce .woocommerce-order-details table tr .product-quantity{ display:none; }
.woocommerce .woocommerce-order-details table tr a{
	color: #000;
}
.woocommerce .woocommerce-order-details .wc-item-meta{
	padding: 0;
	font-weight: 400;
}
.woocommerce .woocommerce-order-details .wc-item-meta li{
	float: none;
	padding: 0;
	border:none;
	line-height: 18px !important;
}
.woocommerce .woocommerce-order-details .wc-item-meta li strong.wc-item-meta-label{ display: none; }
.woocommerce .woocommerce-order-details table tr td.product-total{
	text-align: right;
}
.woocommerce .woocommerce-order-details table tr td.product-total .amount{
	font-size: 14px;
	line-height: 18px !important;
	color: #000;
}
.woocommerce .woocommerce-order-details .bundled_table_item .bundled_table_item_indent,
.woocommerce .woocommerce-order-details .component_table_item .component_table_item_indent{ padding: 0 }
.woocommerce .woocommerce-order-details dl.component dt{ display:none; }
.woocommerce .woocommerce-order-details dl.component .composited_product_quantity{ display: none; }

.woocommerce .woocommerce-order-details table tr td .component_table_item_subtotal{
	
}
.woocommerce .woocommerce-order-details table tr td .component_table_item_subtotal:before{
	display:none;
}
.woocommerce .woocommerce-order-details table tr td .component_table_item_subtotal{
	font-size: 0;
	line-height: 0;
}
.woocommerce .woocommerce-order-details table tfoot{
	text-align: right;
}
.woocommerce .woocommerce-order-details table tfoot tr th{
	display: table-cell;
	padding: 0;
	border:none;
	border-bottom: 1px solid #ddd;
	color: #000 !important;
	font-size: 14px;
	font-weight: 600;
	text-align: left;
}
.woocommerce .woocommerce-order-details table tfoot tr:last-child th{
	border:none;
	color: #000;
}
.woocommerce .woocommerce-order-details table tfoot tr:last-child td{
	border:none !important;
}
.woocommerce-customer-details .woocommerce-column{
	border: 1px solid #ddd;
	border-radius: 4px;
	background: #fff;
	padding: 14px 20px !important;
	width:calc(50% - 4px) !important;
}
.woocommerce-customer-details .woocommerce-column .woocommerce-column__title{
	font-size: 16px;
	line-height: 20px;
	margin: 0 0 10px;
	padding: 0 0 8px;
	text-transform: uppercase;
	border-bottom: 1px solid #ddd;
}
.woocommerce-customer-details .woocommerce-column address{
	border:none !important;
	padding:0 !important;
	font-size:14px;
	line-height: 24px;
}
.woocommerce .woocommerce-order-details .wc-item-meta li:last-child{ display:none; }
/* Prescription Table */
.woocommerce .woocommerce-order-details table .bundle_table_item .component{ display:none; }
.woocommerce .woocommerce-order-details table .bundle_table_item td{
	border:none !important;
	padding: 10px 0 0;
}
.woocommerce .woocommerce-order-details table .bundle_table_item td.product-total{ display: none; }

.woocommerce .woocommerce-order-details table .bundle_table_item .wc-item-meta{
	background: #f9f9f9;
	overflow: hidden;
	padding: 14px;
	border-radius: 4px 4px 0 0;
	border: 1px solid #f0f0f0;
}
.woocommerce .woocommerce-order-details table .bundle_table_item .wc-item-meta li:nth-child(4),
.woocommerce .woocommerce-order-details table .bundle_table_item .wc-item-meta li:nth-child(6),
.woocommerce .woocommerce-order-details table .bundle_table_item .wc-item-meta li:nth-child(7),
.woocommerce .woocommerce-order-details table .bundle_table_item .wc-item-meta li:first-child{
	display: none;
}

.woocommerce .woocommerce-order-details table .bundle_table_item .wc-item-meta li:nth-child(2),
.woocommerce .woocommerce-order-details table .bundle_table_item .wc-item-meta li:nth-child(3){
	float: left;
	margin-right: 5px;
	font-weight: 600;
}
/*.woocommerce .woocommerce-order-details table .bundle_table_item .wc-item-meta li:nth-child(5){*/
/*	float: right;*/
/*}*/

/* Prescription body table */
.woocommerce .woocommerce-order-details table .bundled_table_item td.product-total{ display: none; }
.woocommerce .woocommerce-order-details table .bundled_table_item td{
	border-bottom: 1px solid #f0f0f0 !important;
	border-left: 1px solid #f0f0f0 !important;
	border-right: 1px solid #f0f0f0 !important;
	text-align: right;
}

/* .woocommerce .woocommerce-order-details table tr:nth-child(5) td{
	border-top: 1px solid #f0f0f0 !important;
} */
.woocommerce .woocommerce-order-details table tr:nth-child(6) td .wc-item-meta li strong.wc-item-meta-label{
	display:none!important;
}
.woocommerce .woocommerce-order-details table .bundled_table_item td .wc-item-meta li strong.wc-item-meta-label{
	display: block;
	float: none;
	color: #666;
	font-weight: 400;
	text-transform: uppercase;
	padding: 0 0 6px;
	margin: 0;
/* 	margin: 0 0 10px; */
/* 	border-bottom: 1px solid #f0f0f0; */
}
.woocommerce .woocommerce-order-details table .bundled_table_item td .wc-item-meta{
	display: inline-block;
	vertical-align: bottom;
	width: calc(100% - 72px);
	margin: 0 0 0 10px;
}
.woocommerce .woocommerce-order-details table .bundled_table_item td .wc-item-meta li{
	float:left;
	width: 25%;
	text-align: center;
	padding: 0 5px;
}
.woocommerce .woocommerce-order-details table .bundled_table_item td .bundled-product-name{ 
	padding:0 14px 0;
	color: #666;
	font-weight: 400;
}

@media (max-width:1024px){
    .js-prescription-list ul {
        width: 100%;
    }
    .cl-panel .js-prescription-list ul li, .cl-panel .js-prescription-list ul li.js-heading {
        float: left;
        width: 50%;
    }
    .cl-panel .js-prescription-list ul li.js-heading span.js-box1 {
        visibility: visible;
        text-align: left;
        padding-left: 6px;
        font-size: 12px;
        border-bottom: 1px dotted #ccc;
    }
    .cl-panel .js-prescription-list ul li span {
        border-bottom: 1px dotted #ccc;
        text-align: left;
    }
    .cl-panel .js-prescription-list ul li span:last-child {
        border: none;
    }
    .cl-panel .js-prescription-list ul li span.js-box1 {
        text-align: left;
    }
    .woocommerce table.shop_table_responsive tr, .woocommerce-page table.shop_table_responsive tr {
        /*display: block;
        padding-bottom: 20px;
        float: left;*/
        width: 100%;
    }
	.woocommerce .woocommerce-order ul.order_details{
		float: none;
		margin: 0 0 8px;
		min-width:inherit;
	}
	.woocommerce .woocommerce-order ul.order_details li strong{
	    min-width: 520px;
	}
}
@media (max-width: 768px){
	.woocommerce-customer-details .woocommerce-column{
		width: 100% !important;
		float:none;
		margin: 0 0 8px;
		padding: 12px !important;
	}
	.woocommerce .woocommerce-order ul.order_details li strong{
		min-width: 140px;
		text-align: right !important;
	}
	.woocommerce .woocommerce-order ul.order_details{ padding: 12px; }
	.woocommerce .woocommerce-order-details{
		padding: 12px 12px 0;
	}
	.woocommerce .woocommerce-order-details .woocommerce-order-details__title{
		padding: 0 0 6px;
	}
	.woocommerce .woocommerce-order-details table .bundled_table_item,
	.woocommerce .woocommerce-order-details table .bundle_table_item{ display: none !important; }
}
/* End Layout CSS */


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