/* 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-5dcba546a02ca > .fl-row-content-wrap {
	background-color: #f9f9f9;
}
.fl-node-5dcba546a02ca .fl-row-content {
	max-width: 1160px;
}




.fl-node-5dcba546a14da {
	width: 100%;
}




.fl-node-5dcbcb306e45d {
	width: 100%;
}
.fl-builder-content .fl-rich-text strong {
	font-weight: bold;
}
.bb-heading-input.input-small {
	width: 46px !important;
}

.pp-heading-content {
	overflow: hidden;
}

.pp-heading-content .pp-heading-link {
	text-decoration: none;
}
.pp-heading-content span.heading-title {
	display: block;
}
.pp-heading-content .pp-heading.pp-separator-inline .heading-title {
	display: inline-block;
}

.pp-heading-content .pp-heading.pp-separator-inline .heading-title span {
	position: relative;
	display: inline-block;
}

.pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before,
.pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	border-width: 0;
}

.pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
	right: 100%;
}

.pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
	left: 100%;
}

.pp-heading-content .pp-heading.pp-separator-inline.pp-left .heading-title span {
	padding-left: 0 !important;
}

.pp-heading-content .pp-heading.pp-separator-inline.pp-right .heading-title span {
	padding-right: 0 !important;
}

.pp-heading-content .pp-heading.pp-separator-inline.pp-left .heading-title span:before {
	display: none;
}

.pp-heading-content .pp-heading.pp-separator-inline.pp-right .heading-title span:after {
	display: none;
}

.pp-heading-content .pp-heading-separator {
	margin: 0 auto;
	padding: 0;
	position: relative;
	overflow: hidden;
}

.pp-heading-content .pp-heading-separator.line_with_icon:before {
	right: 50%;
	left: auto;
}

.pp-heading-content .pp-heading-separator.line_with_icon.pp-left:before {
	display: none;
}

.pp-heading-content .pp-heading-separator.line_with_icon.pp-right:after {
	display: none;
}

.pp-heading-content .pp-heading-separator.line_with_icon:after {
	left: 50%;
	right: auto;
}

.pp-heading-content .pp-heading-separator.line_with_icon.pp-left:after {
	left: 1%;
}

.pp-heading-content .pp-heading-separator.line_with_icon.pp-right:before {
	right: 1%;
}

.pp-heading-content .pp-heading-separator.line_with_icon:before,
.pp-heading-content .pp-heading-separator.line_with_icon:after {
	content: "";
	position: absolute;
	bottom: 50%;
	border-width: 0;
	top: 50%;
}

.pp-heading-content .pp-heading-separator .heading-icon-image {
	vertical-align: middle;
	box-shadow: none !important;
	max-width: 100%;
}

.pp-heading-content .pp-heading-separator .pp-separator-line {
	max-width: 100%;
	display: block;
}

.pp-heading-content .pp-heading-separator .pp-heading-separator-icon {
	display: inline-block;
	text-align: center;
}

.pp-heading-content .pp-heading-separator.icon_only span {
	display: inline-block;
}

@media only screen and (max-width: 768px) {
	.pp-heading-content .pp-heading.pp-separator-inline.pp-tablet-left .heading-title span {
		padding-left: 0 !important;
	}

	.pp-heading-content .pp-heading.pp-separator-inline.pp-tablet-right .heading-title span {
		padding-right: 0 !important;
	}

	.pp-heading-content .pp-heading.pp-separator-inline.pp-tablet-left .heading-title span:before {
		display: none;
	}

	.pp-heading-content .pp-heading.pp-separator-inline.pp-tablet-right .heading-title span:after {
		display: none;
	}

	.pp-heading-content .pp-heading-separator.line_with_icon.pp-tablet-left:before {
		display: none;
	}

	.pp-heading-content .pp-heading-separator.line_with_icon.pp-tablet-right:after {
		display: none;
	}

	.pp-heading-content .pp-heading-separator.line_with_icon.pp-tablet-left:after {
		left: 2%;
	}

	.pp-heading-content .pp-heading-separator.line_with_icon.pp-tablet-right:before {
		right: 2%;
	}
}

@media only screen and (max-width: 480px) {
	.pp-heading-content .pp-heading.pp-separator-inline.pp-mobile-left .heading-title span {
		padding-left: 0 !important;
	}

	.pp-heading-content .pp-heading.pp-separator-inline.pp-mobile-right .heading-title span {
		padding-right: 0 !important;
	}

	.pp-heading-content .pp-heading.pp-separator-inline.pp-mobile-left .heading-title span:before {
		display: none;
	}

	.pp-heading-content .pp-heading.pp-separator-inline.pp-mobile-right .heading-title span:after {
		display: none;
	}

	.pp-heading-content .pp-heading-separator.line_with_icon.pp-mobile-left:before {
		display: none;
	}

	.pp-heading-content .pp-heading-separator.line_with_icon.pp-mobile-left:before {
		display: none;
	}

	.pp-heading-content .pp-heading-separator.line_with_icon.pp-mobile-right:after {
		display: none;
	}

	.pp-heading-content .pp-heading-separator.line_with_icon.pp-mobile-left:after {
		left: 2%;
	}

	.pp-heading-content .pp-heading-separator.line_with_icon.pp-mobile-right:before {
		right: 2%;
	}
}@media (max-width: 768px) { /**
 * 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.
 */ }
div.fl-node-5dcbcb306e299 .pp-heading-content .pp-heading-prefix {
	}

div.fl-node-5dcbcb306e299 .pp-heading-content {
	text-align: left;
}

div.fl-node-5dcbcb306e299 .pp-heading-content .pp-heading {
		}

div.fl-node-5dcbcb306e299 .pp-heading-content .pp-heading .heading-title span.title-text {
	display: inline;
	}


div.fl-node-5dcbcb306e299 .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
									display: inline;
	}
div.fl-node-5dcbcb306e299 .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
	}


div.fl-node-5dcbcb306e299 .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
				margin-left: 0px;
		display: inline;
	}
div.fl-node-5dcbcb306e299 .pp-heading-content .pp-heading .heading-title:hover span.pp-secondary-title {
	}


div.fl-node-5dcbcb306e299 .pp-heading-content .pp-heading .heading-title {
	margin-top: px;
	margin-bottom: px;
}

div.fl-node-5dcbcb306e299 .pp-heading-content .pp-heading .heading-title.text-inline-block span.pp-primary-title,
div.fl-node-5dcbcb306e299 .pp-heading-content .pp-heading .heading-title.text-inline-block span.pp-secondary-title {
	display: inline-block;
}

div.fl-node-5dcbcb306e299 .pp-heading-content .pp-heading .pp-heading-link {
}

/** Separators */


div.fl-node-5dcbcb306e299 .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-5dcbcb306e299 .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-5dcbcb306e299 .pp-heading-content .pp-sub-heading {
	margin-top: 0px;
	margin-bottom: 0px;
}


div.fl-node-5dcbcb306e299 .pp-heading-content .pp-sub-heading,
div.fl-node-5dcbcb306e299 .pp-heading-content .pp-sub-heading p {
	}

div.fl-node-5dcbcb306e299 .pp-heading-content .pp-sub-heading p:last-of-type {
	margin-bottom: 0;
}

div.fl-node-5dcbcb306e299 .pp-heading-content .pp-heading-separator .pp-heading-separator-align {
		text-align: left;
	}

div.fl-node-5dcbcb306e299 .pp-heading-content .pp-heading-separator.line_with_icon {
	}
div.fl-node-5dcbcb306e299 .pp-heading-content .pp-heading-separator.line_with_icon:before {
		margin-right: 20px;
		}

div.fl-node-5dcbcb306e299 .pp-heading-content .pp-heading-separator.line_with_icon:after {
		margin-left: 20px;
		}

div.fl-node-5dcbcb306e299 .pp-heading-content .pp-heading-separator.line_with_icon.pp-left:after {
	left: 1%;
}
div.fl-node-5dcbcb306e299 .pp-heading-content .pp-heading-separator.line_with_icon.pp-right:before {
	right: 1%;
}

div.fl-node-5dcbcb306e299 .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-5dcbcb306e299 .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-5dcbcb306e299 .pp-heading-content .pp-heading-separator .heading-icon-image {
	}

div.fl-node-5dcbcb306e299 .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
				width: 100px;
			float: left;
	}

div.fl-node-5dcbcb306e299 .pp-heading-content .pp-heading-separator {
	}


div.fl-node-5dcbcb306e299 .pp-heading-content .pp-heading-separator .pp-heading-separator-icon {
	display: inline-block;
	text-align: center;
			border-radius: 100px;
			border-width: 0px;
			border-style: none;
		}

div.fl-node-5dcbcb306e299 .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-5dcbcb306e299 .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

div.fl-node-5dcbcb306e299 .pp-heading-content .pp-heading-separator.icon_only span {
			border-radius: 100px;
			border-width: 0px;
			border-style: none;
		}

div.fl-node-5dcbcb306e299 .pp-heading-content .pp-heading-separator.icon_only img,
div.fl-node-5dcbcb306e299 .pp-heading-content .pp-heading-separator.line_with_icon img {
		border-radius: 100px;
	}


@media only screen and (max-width: 1024px) {
	div.fl-node-5dcbcb306e299 .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-5dcbcb306e299 .pp-heading-content {
				text-align: ;
			}
	div.fl-node-5dcbcb306e299 .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-5dcbcb306e299 .pp-heading-content .pp-heading-prefix {
									}
	}

@media only screen and (max-width: 768px) {
	div.fl-node-5dcbcb306e299 .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-5dcbcb306e299 .pp-heading-content {
				text-align: ;
			}
	div.fl-node-5dcbcb306e299 .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-5dcbcb306e299 .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-5dcbcb306e299 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span {
	padding-left: 20px;
	padding-right: 20px;
}
div.fl-node-5dcbcb306e299 .pp-heading-content .pp-heading-separator {
	margin-top: 10px;
	margin-bottom: 10px;
}
div.fl-node-5dcbcb306e299 .pp-heading-content .pp-heading-separator .pp-heading-separator-icon {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
div.fl-node-5dcbcb306e299 .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 1024px) {
	div.fl-node-5dcbcb306e299 .pp-heading-content .pp-heading .heading-title {
		font-size: 26px;
		line-height: 30px;
	}
}
@media(max-width: 768px) {
	div.fl-node-5dcbcb306e299 .pp-heading-content .pp-heading .heading-title {
		font-size: 22px;
		line-height: 26px;
	}
}
@media ( max-width: 1024px ) {
 .fl-node-5dcbcb306e299.fl-module > .fl-module-content {
	margin-bottom:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-5dcbcb306e299.fl-module > .fl-module-content {
	margin-top:3px;
}
}

/* 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 */
/*Affirm label style*/
.cart_totals .shop_table tbody #learn-more{ display:none; }
.cart_totals .shop_table tbody tr:last-child{ display:none; }
.cart_totals .shop_table tbody tr:last-child td{ width:100% !important; }
#learn-more{ 
    margin: 10px 0 0; 
    font-size: 14px;
    line-height: 18px;
}
.woocommerce{ overflow:hidden; }
.woocommerce .woocommerce-cart-form > .shop_table{
    float:left;
    width: 66.38%;
}
.woocommerce .product-container{
    padding: 16px 24px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin: 0 0 8px;
}
.woocommerce .product-container .header-area{ 
    overflow: hidden; 
    border-bottom: 1px solid #ddd;
    padding: 0 0 10px;
}
.woocommerce .product-container .prescription-name{
    float: left;
    color: #000;
    font-size: 24px;
    line-height: 28px;
    padding: 0 0 0 7px;
}
.woocommerce .product-container .product-remove{
    float:right;
    background: url('/wp-content/uploads/2019/11/del-icon.png') no-repeat 50% 50%;
    text-indent: -9999px;
    overflow: hidden;
    height: 20px;
    width: 18px;
}
.woocommerce .product-container .product-remove a.remove{
    width: auto !important;
    height: auto !important;
    color: transparent !important;
}
.woocommerce .product-container .product-remove a.remove:hover{ 
    color: transparent !important; 
    background: transparent !important;
}
.woocommerce .product-container .product-inner-container{ overflow:hidden; }
.woocommerce .product-container .product-thumbnail{
    float: left;
    max-width: 41%;
    padding: 20px;
}
.woocommerce .product-container .products-section{ 
    overflow:hidden; 
    padding: 20px 20px 0 20px;
}
.woocommerce .product-container .product-detail{ 
    overflow:hidden; 
    font-size: 14px;
    line-height: 20px;
    margin: 0 0 18px;
    color: #000;
}
.woocommerce .product-container .product-detail.prescription-item{ margin: 0 0 6px; }
.woocommerce .product-container .product-detail.prescription-item .detail-txt{ 
    color: #3f6bb2; 
    position: relative;
    cursor: pointer;
}
.woocommerce .product-container .product-detail.prescription-item .detail-txt:after{
    content: '\f0dd';
    font-family: 'FontAwesome';
    display: inline-block;
    vertical-align: top;
    line-height: 10px;
    margin: 0 0 0 5px;
    /*transition: 0.2s ease-in all;*/
}
.woocommerce .product-container .active .product-detail.prescription-item .detail-txt:after{
    transform: rotate(180deg);
    transform-origin: center 80%;
}
.woocommerce .product-container .product-detail .product-name{ 
    float: left; 
    max-width: 82%;
}
.woocommerce .product-container .product-detail .product-price{ float: right; }
.woocommerce .product-container .product-detail .product-name > .item-title{ font-weight: 600; }
.woocommerce .product-container .product-detail .product-name > .item-title a{ color: #000; }

.woocommerce .product-container .product-detail .variation{ margin: 0;}
.woocommerce .product-container .product-detail .variation dt{ display: none; }
.woocommerce .product-container .product-detail .variation dd,
.woocommerce .product-container .product-detail .variation p{ margin: 0; }
.woocommerce .product-container .product-detail .component dt{ display:none; }
.woocommerce .product-container .product-detail .component dd{ margin: 0; }
.woocommerce .product-container .product-detail .component p{ margin: 0;}
.woocommerce .product-container .product-detail .component{
    font-weight: 400;
    margin: 0;
}
/* Detail Section */
.woocommerce .product-container .detail-section{
    border-top: 1px solid #f0f0f0;
    padding: 12px 0 0;
    display: none;
}
.woocommerce .product-container .detail-section .product-detail{
    margin: 0 0 6px;
    color: #666 !important;
}
/* Prescription Table */
.woocommerce .product-container .detail-section .shop_table_responsive{
     margin: 4px 0 12px;
}
.woocommerce .product-container .detail-section .product-detail .prescription-img{ text-align: center;margin-bottom: 15px; }
.woocommerce .product-container .detail-section .product-detail .prescription-img img{ max-height: 260px; }
.woocommerce .product-container .detail-section .shop_table_responsive .table-header{
    background: #f9f9f9;
    border-bottom: 1px solid #f0f0f0;
    overflow: hidden;
    color: #333;
    padding: 14px 14px 10px;
}
.woocommerce .product-container .detail-section .shop_table_responsive .table-header .pres-name{
    float: left;
    font-weight: 600;
}
.woocommerce .product-container .detail-section .shop_table_responsive .table-header .pres-date{ float: right; }
.woocommerce .product-container .detail-section .shop_table_responsive .pres-values{ padding: 14px 14px 0;border: 1px solid #f0f0f0;border-radius: 4px;margin: 0 0 10px 0; }
.woocommerce .product-container .detail-section .shop_table_responsive .pres-values ul li{
    overflow: hidden;
    padding: 10px 0 8px;
    border-bottom: 1px solid #f0f0f0;
}
.woocommerce .product-container .detail-section .shop_table_responsive .pres-values ul li.js-heading{
    text-transform: uppercase;
    font-size: 12px;
    line-height: 16px;
    color: #666;
    border-bottom: 1px solid #ddd;
    padding: 0 0 5px;
}
.woocommerce .product-container .detail-section .shop_table_responsive .pres-values ul li:last-child{ border:none; }
.woocommerce .product-container .detail-section .shop_table_responsive .pres-values ul span:first-child{
    width: 25%;
    text-align: left;
    color: #666 !important;
}
.woocommerce .product-container .detail-section .shop_table_responsive .pres-values ul span{
    display: inline-block;
    vertical-align: middle;
    width: 15%;
    text-align: center;
    margin: 0 -4px 0 0;
    color: #333 !important;
}
.woocommerce .product-container .detail-section .shop_table_responsive .pres-values.prism-section ul span.js-box1 {
    width: 25%;
}
.woocommerce .product-container .detail-section .shop_table_responsive .pres-values.prism-section ul span {
    width: 25%;
}
.woocommerce .product-container .detail-section .shop_table_responsive .pres-values.prism-section ul span.js-box4 {
    width: 25%;
}
.woocommerce .product-container .detail-section .shop_table_responsive .pres-values.prism-section ul span span {
    width: auto;margin: 0;
}
/* Edit Cart Button */
.woocommerce .product-container .edit-prescription{ margin:14px 0 0; } 
.woocommerce .product-container .edit-prescription a{
    display:block;
    text-align: center;
    text-transform: uppercase;
    border: 1px solid #8ba7d7;
    border-radius: 4px;
    color: #3f6bb2;
    font-size: 14px !important;
    line-height: 20px !important;
    padding: 11px 10px 9px;
    transition: 0.2s ease-in all;
}
.woocommerce .product-container .edit-prescription a:hover{
    background: #3f6bb2;
    color: #fff;
    text-decoration: none !important;
}
.woocommerce .product-container .edit-prescription a small{ 
    font-size: inherit !important; 
    text-decoration: none !important;
}
/* Sub Total */
.woocommerce .product-container .active .subtotal-area{margin: 30px 0 0;}
.subtotal-area{ 
    overflow:hidden; 
    font-size: 14px;
    line-height: 20px;
    border-top: 1px solid #ccc;
    padding: 14px 0;
    margin: 20px 0 0;
}
.subtotal-area .subtotal_text{ float: left; }
.subtotal-area .subtotal_amount{
    float: right;
    color: #000;
    font-weight: 600;
}
/* Cart Side Area */
.woocommerce .cart-side-area{
    overflow: hidden;
    padding: 0 0 0 25px;
}
.woocommerce .cart-side-area .cart-collaterals{
    border: 1px solid #f0f0f0;
    border-radius: 4px;
    background: #fff;
    padding: 5px 24px 24px;
    margin: 0 0 8px;
}
.woocommerce .cart-collaterals .cart_totals{
    width:auto !important;
    float:none !important;
}
.woocommerce .cart-collaterals .cart_totals h2{ display:none; }
.woocommerce .cart-collaterals table.shop_table{
    background: none;
    border:none;
    margin: 0 !important;
}
.woocommerce .cart-collaterals table.shop_table th,
.woocommerce .cart-collaterals table.shop_table td{ 
    font-size: 14px;
    line-height: 20px !important;
    color: #333 !important;
    padding: 8px 0 6px !important;
    border:none !important;
}
.woocommerce .cart-collaterals table.shop_table .cart-subtotal th,
.woocommerce .cart-collaterals table.shop_table .cart-subtotal td{
    border-bottom: 1px solid #ebebeb !important;
    padding: 16px 0 14px !important;
}
/*.woocommerce .cart-collaterals table.shop_table .order-total th,*/
/*.woocommerce .cart-collaterals table.shop_table .order-total td{*/
/*    border-top: 1px solid #ebebeb !important;*/
/*    padding: 16px 0 14px !important;*/
/*}*/
.woocommerce .cart-collaterals table.shop_table th{ font-weight: 400; }
.woocommerce .cart-collaterals table.shop_table td{ text-align: right; }
.woocommerce .cart-collaterals table.shop_table .order-total th,
.woocommerce .cart-collaterals table.shop_table .order-total td{
    border-top: 1px solid #ebebeb !important;
    padding: 22px 0 0 !important;
    font-size: 16px;
    line-height: 20px !important;
    color: #000 !important;
    font-weight: 600;
}
.woocommerce .cart-collaterals .wc-proceed-to-checkout{ padding:12px 0 0; }
.woocommerce .cart-collaterals .wc-proceed-to-checkout .checkout-button{
    margin: 0;
    border:none !important;
    text-transform: uppercase;
    padding: 16px 0 14px;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px !important;
}
.woocommerce .cart-collaterals .wc-proceed-to-checkout .checkout-button:hover{ border:none !important; }
.woocommerce .cart-side-area .cart-collaterals table tr.shipping td,
.woocommerce .cart-side-area .cart-collaterals table tr.shipping th { vertical-align:top !important; }
.woocommerce .cart-side-area .cart-collaterals table tr.shipping th span{
    display: block;
    color: #cacaca;
    font-style: italic;
    line-height: 18px;
}
.woocommerce .cart-side-area .cart-collaterals table tr.shipping td{  text-transform: uppercase; }
.woocommerce .cart-side-area .cart-collaterals table tr.shipping th{ width:70%; }
/* Coupon */
.coupon{
    border: 1px solid #f0f0f0;
    border-radius: 4px;
    background: #fff;
    padding: 20px 24px 18px;
    margin: 0 0 8px;
}
.coupon > label{
    display: block;
    font-size: 14px;
    line-height: 20px;
    margin: 0;
    cursor: pointer;
}
.coupon > label:after{
    float:right;
    content:'+';
    font-size: 30px;
    color: #515763;
}
.coupon.active > label:after{ content: '-'; }
.coupon .coupon-fields{
    position: relative;
    margin: 15px 0 0;
    display: none;
}
.coupon .coupon-fields .input-text{
    border-color: #c0c0bf;
    background: #fff;
    font-size: 14px;
    height: 37px;
    padding: 2px 100px 0 18px;
}
.coupon .coupon-fields .input-text:focus{ border-color: #c0c0bf !important; }
.coupon .coupon-fields .button{
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    border:none !important;
    background: #3f6bb2;
    color: #fff !important;
    border-radius: 0 4px 4px 0;
    text-transform: uppercase;
    min-width: 88px;
    transition: 0.2s all ease-in;
}
.coupon .coupon-fields .button:hover{ background: #204391; }
.coupon .coupon-fields .input-text::-webkit-input-placeholder{
    font-style: italic !important;
    color: #cacaca !important;
    opacity: 1 !important;
}
.coupon .coupon-fields .input-text:-ms-input-placeholder{
    font-style: italic !important;
    color: #cacaca !important;
    opacity: 1 !important;
}
.coupon .coupon-fields .input-text::-moz-placeholder{
    font-style: italic !important;
    color: #cacaca !important;
    opacity: 1 !important;
}
.coupon .coupon-fields .input-text:-moz-placeholder{
    font-style: italic !important;
    color: #cacaca !important;
    opacity: 1 !important;
}
.coupon .coupon-fields .input-text::placeholder{
    font-style: italic !important;
    color: #cacaca !important;
    opacity: 1 !important;
}
.woocommerce .cart-collaterals .cart_totals table.shop_table .cart-discount th,
.woocommerce .cart-collaterals .cart_totals table.shop_table .cart-discount td{ color: #e31938 !important; }
.woocommerce .cart-collaterals .cart_totals .shop_table .cart-discount .couponcode{ 
    display:block; 
    color: #cacaca !important;
    font-style: italic;
}
.woocommerce .cart-collaterals .cart_totals .shop_table .cart-discount .coupon-amount{ margin:0 0 0 5px; }
.woocommerce-shipping-destination{ display:none; }
@media only screen and (max-width: 1024px) {
    .woocommerce .product-container .product-thumbnail{
        max-width: inherit;
        float: none;
        text-align: center;
    }
    .woocommerce .product-container .products-section{ padding: 0; }
    .woocommerce .cart-side-area{ padding: 0 0 0 12px; }
    .woocommerce .woocommerce-cart-form > .shop_table{ width:60%; }
    .woocommerce .product-container .prescription-name{
        padding:0;
        font-size: 20px;
        line-height: 24px;
    }
    .woocommerce .product-container{ padding: 16px 18px;}
    .woocommerce .cart-collaterals table.shop_table th, 
    .woocommerce .cart-collaterals table.shop_table td{ padding: 13px 0 !important; }
    .fl-rich-text > p{ margin:0; }
}
@media only screen and (max-width: 767px){
    .woocommerce .woocommerce-cart-form > .shop_table{
        float: none;
        width:auto;
    }
    .woocommerce .cart-side-area{ padding: 0; }
    .woocommerce .product-container .prescription-name{
        font-size: 18px;
        line-height: 22px;
    }
    .woocommerce .product-container{ padding: 14px 12px 0;}
    .woocommerce .cart-collaterals table.shop_table th, 
    .woocommerce .cart-collaterals table.shop_table td{ padding: 10px 0 !important; }
    .woocommerce .cart-side-area .cart-collaterals{ padding: 5px 12px 12px; }
    .coupon{padding: 12px 12px 10px;}
    .woocommerce table.shop_table_responsive tr td::before, 
    .woocommerce-page table.shop_table_responsive tr td::before{ font-weight: 400 !important; }
    .woocommerce table.shop_table_responsive tr:nth-child(2n) td, 
    .woocommerce-page table.shop_table_responsive tr:nth-child(2n) td{ background: #fff !important; }
    .woocommerce .product-container .product-thumbnail img{ max-width:180px; }
    .extra-info{ padding: 18px 12px 0; }
    .extra-info ul li{ margin: 0 0 16px; }
    .woocommerce table.shop_table_responsive tr.cart-discount td::before, 
    .woocommerce-page table.shop_table_responsive tr.cart-discount td::before{
        content: "Coupon";
    }
    .woocommerce .cart-side-area .cart-collaterals table tr.shipping td::before{
        text-transform: none;
    }
}
	 
/* End Layout CSS */


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