:root {
	--bp-wide: 1600px;
}

html {
	font-size: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-top: 0;
	font-weight: bold;
}

[data-chrome-hide],
[data-safari-hide],
[data-firefox-hide],
[data-ie-hide] {
	display: none !important;
}

/* For > 1920 widths */

@media only screen and (min-width: 1899px) {
	html {
		font-size: 100%;
	}
}

img {
	max-width: 100%;
}

a,
button {
	cursor: pointer;
}

button {
	font-family: inherit;
}

.valign-middle {
	vertical-align: middle;
}

.valign-bottom {
	vertical-align: bottom;
}

.opacity-50 {
	opacity: 0.5;
}

.opacity-light {
	opacity: 0.7;
}

.opacity-hover-1:hover {
	opacity: 1;
}

.relative {
	position: relative;
}

.absolute {
	position: absolute;
}

.self-justify-center {
	-webkit-align-self: center;
	align-self: center;
}

.self-justify-bottom {
	-webkit-align-self: flex-end;
	align-self: flex-end;
}

.text-dark {
	color: #414954 !important;
}

.border {
	border: 1px solid #d8dde3;
}

.border-bottom {
	border-bottom: 1px solid #d9dde1;
}

.border-bottom-none {
	border-bottom: transparent;
}

.border-right-none {
	border-right: transparent;
}

.border-left-none {
	border-left: transparent;
}

.br-2 {
	border-radius: 2px;
}

.br-4 {
	border-radius: 4px;
}

.underline {
	text-decoration: underline;
}

.overflow-hidden {
	overflow: hidden;
}

.img-circle {
	border-radius: 50%;
}

.blue-link {
	color: #3892e3;
}

.blue-link:hover,
.blue-link:focus {
	text-decoration: none;
	border-bottom: 1px solid #3892e3;
}

.outline-none {
	outline: none;
}

.text-transform-none {
	text-transform: none;
}

.caret {
	display: inline-block;
	width: 0;
	height: 0;
	margin-left: 2px;
	vertical-align: middle;
	border-top: 5px solid;
	border-right: 5px solid transparent;
	border-left: 5px solid transparent;
}

.footer-svg {
	background-image: url(https://static.wingify.com/vwo/wp-content/themes/vwo/images/footer-graph.svg);
	background-size: cover;
	background-repeat: no-repeat;
}

.full-width {
	width: 100%;
}

@media only screen and (max-width: 767px) {
	.phn-full-width {
		width: 100% !important;
	}
}

.full-height {
	height: 100%;
}

ul {
	list-style: none;
	margin: 0px;
}

.sticky {
	position: fixed !important;
	left: 0;
	right: 0;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	/* to stop repainting */
}

.header-nav {
	display: -webkit-flex;
	display: flex;
}

.header-nav > li {
	margin-left: 40px;
	box-sizing: border-box;
}

.header-nav > li > a {
	display: inline-block;
	padding: 10px 0 7px;
	/* bottom padding is 3px less because of border */
	color: rgba(255, 255, 255, 0.7);
	border-bottom: 3px solid transparent;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	transition: 0.25s ease;
}

.header-nav > li:hover > a,
.header-nav > li:focus > a,
.header-nav > li.current-menu-item > a,
.header-nav > li.active > a {
	border-color: rgba(255, 255, 255, 0.7);
	color: rgba(255, 255, 255, 1);
}

.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 1;
	float: left;
	min-width: 160px;
	padding: 5px 0;
	/* override default ul */
	list-style: none;
	/*font-size: $font-size-base;*/
	text-align: left;
	/* Ensures proper alignment if parent has it changed (e.g., modal footer) */
	background-color: white;
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: 3px;
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
	background-clip: padding-box;
	opacity: 0;
	visibility: hidden;
	-webkit-transform: translateY(10px);
	transform: translateY(10px);
	transition: 0.25s ease;
}

.dropdown-menu--right {
	left: auto;
	right: 0;
}

.dropdown-menu > li > a {
	display: block;
	padding: 5px 20px;
	clear: both;
	color: inherit;
	white-space: nowrap;
	/* prevent links from randomly breaking onto new lines */
}

.dropdown-menu > li > a:hover {
	background: #1f2532;
	color: white;
}

.no-hover-focus-dropdown .dropdown-menu {
	opacity: 0;
	-webkit-transform: translateY(10px);
	transform: translateY(10px);
	visibility: hidden;
}

body:not(.no-hover-focus-dropdown) .dropdown-wrap:hover .dropdown-menu,
body:not(.no-hover-focus-dropdown) .dropdown-wrap > a:focus + .dropdown-menu,
.no-hover-focus-dropdown .dropdown-menu.open {
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
	visibility: visible;
}

body:not(.no-hover-focus-dropdown)
	.dropdown-wrap:focus-within
	> .dropdown-menu {
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
	visibility: visible;
}

.contact-nav-bar {
	position: relative;
	z-index: 5;
}

.main-nav-bar {
	position: relative;
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
	z-index: 4;
	transition: background-color 0.2s ease;
	/* to stop repainting */
	/* -webkit-transform: translateZ(0);
  transform: translateZ(0); */
}

.main-nav-bar:before {
	content: '';
	position: absolute;
	top: -100%;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
	opacity: 1;
	background-color: white;
	-webkit-transform: translateY(0);
	transform: translateY(0);
	transition: 0.3s ease;
	transition-property: opacity, -webkit-transform;
	transition-property: opacity, transform;
	transition-property: opacity, transform, -webkit-transform;
}

.main-nav-bar--home:before {
	opacity: 0;
	-webkit-transform: translateY(-210%);
	transform: translateY(-210%);
}

.main-nav-bar--home {
	background: none !important;
	color: #ffffff;
	box-shadow: none;
}

.main-nav-bar--home .top-vwo-logo {
	opacity: 0;
}

.top-vwo-logo--white {
	opacity: 0;
	transition: opacity 0.25s ease;
	position: absolute;
	top: 0;
	left: 8px;
	right: 0;
	bottom: 0;
}

.main-nav-bar--home .top-vwo-logo--white {
	opacity: 1;
}

.main-nav-bar--home .main-nav > li.active a {
	color: #ffffff;
}

.main-nav-bar-btn {
	padding: 8px 14px !important;
}

.main-nav-bar.sticky {
	transition: 0.3s ease;
}

.main-nav {
	display: inline-block;
}

.main-nav > li {
	display: inline-block;
	position: relative;
	padding: 0px 15px;
}

.main-nav > li > a {
	font-size: 0.82rem;
	font-weight: bold;
	text-transform: uppercase;
	display: inline-block;
	letter-spacing: 1.4px;
	color: inherit;
	padding: 18px 0px;
	/*border-bottom: 3px solid transparent;*/
	box-shadow: inset rgba(0, 0, 0, 0) 0 -3px 0;
	transition: 0.25s ease;
}

.main-nav > li > a:hover,
.main-nav > li.active > a {
	color: #40454d;
	box-shadow: inset #788290 0 -3px 0;
}

.main-nav-bar--home .main-nav > li > a:hover,
.main-nav-bar--home .main-nav > li.active > a {
	color: inherit;
	box-shadow: inset #fff 0 -3px 0;
}

.main-nav > li a:hover,
.main-nav > li.active a,
.header-nav > li.active a,
.header-nav > li a:hover {
	text-decoration: none;
}

.top-nav-bar {
	position: relative;
	position: -webkit-sticky;
	position: sticky;
	z-index: 3;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	/* to stop repainting */
}

.top-nav-bar.sticky {
	transition: 0.3s ease 0s;
}

.top-nav-bar .caret {
	transition: 0.2s ease;
	opacity: 0.4;
}

.top-nav-bar:hover .caret {
	opacity: 1;
}

.bottom-nav-bar {
	position: relative;
	position: -webkit-sticky;
	position: sticky;
	z-index: 3;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	/* to stop repainting */
}

.bottom-nav-bar.sticky {
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.bottom-nav-bar.sticky-bottom {
	top: auto;
	bottom: 0;
}

/* HACK: Hiding Top/Bottom Bar from Hero on the Home Page*/

.main-wrap--home .top-nav-bar,
.main-wrap--home .bottom-nav-bar {
	display: none;
}

.nav-search-bar {
	position: relative;
}

.nav-search-bar input {
	font-size: 0.875rem;
	border-radius: 4px;
	color: #4a4a4a;
	outline: none;
	border: none;
	padding: 0.5rem 1.75rem 0.5rem 0.75rem;
	height: 2rem;
	font-weight: bold;
	line-height: 1;
	box-sizing: border-box;
	font-family: inherit;
	background: #eeeff1;
	width: 10rem;
	transition: width 0.5s;
}

.nav-search-bar input:focus {
	background: #fff;
}

.nav-search-bar input::-webkit-input-placeholder {
	color: #788290;
}

.nav-search-bar input:-ms-input-placeholder {
	color: #788290;
}

.nav-search-bar input::placeholder {
	color: #788290;
}

.nav-search-bar svg {
	position: absolute;
	right: 0.5rem;
	top: calc(50% - 0.5rem);
	width: 1rem;
	height: 1rem;
	fill: #d8dde3;
}

.header-top-contact-nav {
	margin: 0px;
}

.header-top-contact-nav.header-top-contact-nav--home > li a {
	color: #ffffff;
}

.header-top-contact-nav--home {
	position: relative;
	z-index: 2;
}

.header-top-contact-nav > li {
	display: inline-block;
	padding: 0px 20px;
	margin: 14px 0px 4px;
	font-size: 0.77rem;
	line-height: 12px;
	/* So that separator do not overshoot */
	border-right: 1px solid #d8dde3;
}

.header-top-contact-nav > li:last-child {
	border-width: 0px;
	padding-right: 0;
}

.header-top-contact-nav > li a {
	color: #8b95a1;
}

.header-top-contact-nav > li a:hover {
	text-decoration: underline;
}

.main-nav-bar,
.main-sub-nav-bar {
	width: 100%;
}

.sticky.sticky-initial-pos {
	transition: none;
}

.btn {
	display: inline-block;
	padding: 10px 20px;
	border-width: 1px;
	border-style: solid;
	background: white;
	border-radius: 4px;
	text-transform: uppercase;
	font-weight: 600;
	line-height: 16px;
	font-size: 0.875rem;
	transition: 0.25s ease;
	cursor: pointer;
	white-space: nowrap;
}

.btn-small {
	padding: 5px 10px;
}

.btn-big {
	padding: 15px 50px;
}

.btn.bg-blue:hover,
.btn.bg-blue:focus {
	background-color: #3875c6 !important;
	border: 1px solid #3875c6 !important;
}

.btn--dark {
	background: #1f2532;
	border-color: #1f2532;
}

.btn--dark:hover,
.btn--dark:focus {
	background: #0c0e13;
	border-color: #0c0e13;
}

.btn-fancy {
	border-bottom-width: 4px;
	border-bottom-color: rgba(0, 0, 0, 0.3) !important;
}

.btn.btn-fancy:hover {
	border-bottom-width: 4px !important;
	border-bottom-color: transparent !important;
}

.btn.bg-green:hover,
.btn.bg-green:focus {
	background: #2b7d51 !important;
	border-color: #2b7d51 !important;
}

.color-orange.btn:hover,
.color-orange.btn:focus {
	background: #d96f2f !important;
	color: #fff !important;
}

.btn-orange.btn:hover,
.btn-orange.btn:focus {
	background: #fd8259 !important;
	color: #fff !important;
}

.color-blue.btn:hover,
.color-blue.btn:focus {
	background: #0c7abf !important;
	color: #fff !important;
}

.color-red.btn:hover,
.color-red.btn:focus {
	background: #a32727 !important;
	color: #fff !important;
}

/* Demo Form css*/

.demo-form-label {
	color: rgba(255, 255, 255, 0.5);
	letter-spacing: 2px;
}

.demo-form-sub-heading {
	font-weight: normal;
	line-height: 1.4;
	font-size: 1.125rem;
}

/* TODO: use a class instead of styling all btns here */

.btn--green {
	background: #4cb07a;
	letter-spacing: 2px;
	font-size: 1.2rem;
	line-height: 1;
	cursor: pointer;
	border: 1px solid #4cb07a;
}

.btn--green:hover,
.btn--green:focus {
	background: #2b7d51;
	border: 1px solid #2b7d51;
}

.hr {
	height: 2px;
	width: 100%;
	background: #d8d8d8;
	opacity: 0.1;
}

.footer-social-icon svg {
	opacity: 0.6;
	transition: opacity 0.25s ease;
}

.footer-social-icon svg:hover {
	opacity: 1;
}

.input--request-demo.input--request-demo {
	border-radius: 4px;
	padding: 15px 15px;
	border: 0;
}

.wrap {
	box-sizing: content-box;
	/* So that we get complete 1200px for content */
	max-width: 1200px;
}

.visiblity-hide {
	visibility: hidden;
}

.col-auto {
	padding-left: 0.5rem;
	padding-right: 0.5rem;
	-webkit-flex-grow: initial;
	flex-grow: initial;
	-webkit-flex-basis: initial;
	flex-basis: initial;
}

.brdr-btm-radius {
	border-bottom-right-radius: 3px;
	border-bottom-left-radius: 3px;
}

.display-flex {
	display: -webkit-flex;
	display: flex;
}

.display-inline-flex {
	display: -webkit-inline-flex;
	display: inline-flex;
}

.flex-1 {
	-webkit-flex: 1;
	flex: 1;
}

.lh-0 {
	line-height: 0px;
}

.flex-direction-col {
	-webkit-flex-direction: column;
	flex-direction: column;
}

@media only screen and (max-width: 767px) {
	.phn-flex-direction-col {
		-webkit-flex-direction: column !important;
		flex-direction: column !important;
	}
}

.flex-wrap-nowrap {
	-webkit-flex-wrap: nowrap !important;
	flex-wrap: nowrap !important;
}

@media only screen and (max-width: 1279px) {
	html {
		font-size: 14px;
	}
	body {
		line-height: 1.6;
	}
	.js-top-menu-request-demo-cta {
		transition: visibility 0.4s linear;
	}
	.main-wrap {
		transition: 0.25s ease-in-out;
		/*will-change: transform;*/
	}

	.main-nav-bar .main-nav-bar-vwo-logo {
		height: 16px;
		width: auto;
	}
	.mobile-slide-nav-box,
	.mobile-slide-subnav-box {
		background: #263947;
		height: calc(100vh - 62px);
		width: 100vw;
		position: fixed;
		z-index: 4;
		top: 60px;
		left: 0px;
		-webkit-transform: translateX(100%);
		transform: translateX(100%);
		will-change: transform;
		transition: -webkit-transform 0.3s ease;
		transition: transform 0.3s ease;
		transition: transform 0.3s ease, -webkit-transform 0.3s ease;
	}
	.is-first-menu-open .mobile-slide-nav-box {
		-webkit-transform: translateX(0%);
		transform: translateX(0%);
	}
	/*.is-first-menu-open .main-wrap {*/
	/* COmmented due to header width going beyond screen width because of this */
	/*transform: translateX(-50%);*/
	/*}*/
	.is-second-menu-open .mobile-slide-nav-box {
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
	}
	.is-second-menu-open.is-mobile-menu-1 .mobile-slide-subnav-product {
		-webkit-transform: translateX(0%);
		transform: translateX(0%);
	}
	.is-second-menu-open.is-mobile-menu-2 .mobile-slide-subnav-resources {
		-webkit-transform: translateX(0%);
		transform: translateX(0%);
	}

	.is-second-menu-open.is-mobile-menu-3 .mobile-slide-subnav-cro {
		-webkit-transform: translateX(0%);
		transform: translateX(0%);
	}
	.mob-nav {
		padding: 0px;
		margin: 0px;
		display: inline-block;
		width: 100%;
		overflow-y: scroll;
		max-height: calc(100% - 80px);
	}
	.mob-sub-nav {
		padding-left: 0px;
		background: rgba(0, 0, 0, 0.2);
		transition: height 0.3s ease;
		overflow: hidden;
		height: 0px;
	}
	.mob-sub-nav.show-menu-state {
		height: auto;
	}
	.mob-sub-nav li a {
		padding-left: 60px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	}
	.mob-nav li button {
		width: 100%;
		background-color: transparent;
		text-align: left;
		border-left: none;
		border-top: none;
		border-right: none;
	}
	.slide-menu-item {
		color: #d8dde3;
		text-transform: uppercase;
		border-bottom: 1px solid rgba(255, 255, 255, 0.15);
		letter-spacing: 2px;
		padding: 22px 15px 22px 40px;
		position: relative;
		display: block;
	}
	.mob-nav > li svg {
		position: absolute;
		right: 20px;
		top: 50%;
		margin-top: -6px;
	}
	.bottom-mob-nav {
		/* position: absolute; */
		bottom: 5%;
	}
	.slide-menu-header {
		background: #eeeff1;
		color: #263947;
		width: 100%;
	}
	.slide-menu-header svg {
		position: absolute;
		left: 20px;
		top: 50%;
		margin-top: -6px;
	}
	.mob-nav-btm-btn {
		color: #788290;
	}
	.mob-nav-btm-btn a {
		color: #788290;
		font-size: 0.82rem;
		text-transform: uppercase;
		letter-spacing: 1px;
	}
	.top-menu-burger-icon {
		width: 24px;
		height: 18px;
		position: relative;
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
		transition: 0.5s ease-in-out;
		cursor: pointer;
	}
	.top-menu-burger-icon span {
		display: block;
		position: absolute;
		height: 3px;
		width: 100%;
		background: #788290;
		border-radius: 1px;
		opacity: 1;
		left: 0;
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
		transition: 0.25s ease-in-out;
	}
	.top-menu-burger-icon span:nth-child(1) {
		top: 0px;
	}
	.top-menu-burger-icon span:nth-child(2) {
		top: 7px;
	}
	.top-menu-burger-icon span:nth-child(3) {
		top: 14px;
	}
	.is-first-menu-open .top-menu-burger-icon span:nth-child(1) {
		top: 7px;
		-webkit-transform: rotate(135deg);
		transform: rotate(135deg);
	}
	.is-first-menu-open .top-menu-burger-icon span:nth-child(2) {
		opacity: 0;
		/*left: -60px; */
	}
	.is-first-menu-open .top-menu-burger-icon span:nth-child(3) {
		top: 7px;
		-webkit-transform: rotate(-135deg);
		transform: rotate(-135deg);
	}
}

/*------------------------------------------------
	*Dropdown tab menu
*------------------------------------------------*/

.dropdown {
	position: absolute;
	z-index: 1;
	width: 1000px;
	margin: auto;
	visibility: hidden;
	opacity: 0;
	-webkit-transform: translateY(15px);
	transform: translateY(15px);
	transition: opacity 0.25s ease, visibility 0.25s,
		-webkit-transform 0.2s ease;
	transition: transform 0.2s ease, opacity 0.25s ease, visibility 0.25s;
	transition: transform 0.2s ease, opacity 0.25s ease, visibility 0.25s,
		-webkit-transform 0.2s ease;
	/*transition-delay: 700ms;  so that it doesn't closes immediately */
}

.dropdown:before {
	content: '';
	border-style: solid;
	border-width: 10px 10px 10px 10px;
	border-color: transparent transparent #ffffff transparent;
	position: absolute;
	top: -18px;
	z-index: 2;
}

.dropdown:after {
	content: '';
	border-style: solid;
	border-width: 10px 10px 10px 10px;
	border-color: transparent transparent #d8dde3 transparent;
	position: absolute;
	top: -19px;
	z-index: 1;
}

.is-dropdown-visible,
.dropdown-menu-wrap > a:focus + .dropdown {
	/* transition-delay: 200ms; */
	visibility: visible;
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

.is-dropdown-visible,
.dropdown-menu-wrap > a:focus + .dropdown,
.dropdown-menu-wrap:focus-within > .dropdown {
	/* transition-delay: 200ms; */
	visibility: visible;
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

@media only screen and (max-width: 768px) {
	.dropdown {
		display: none;
	}
	p {
		word-break: break-word;
	}
}

/*------------------------------------------------
	Resources Dropdown
*------------------------------------------------*/

.resources-dropdown {
	right: -170px;
}

.resources-dropdown:before {
	left: 75%;
}

.resources-dropdown:after {
	left: 75%;
}

@media only screen and (min-width: 768px) and (max-width: 1279px) {
	.resources-dropdown {
		right: -300px;
	}
	.resources-dropdown:before {
		left: 60%;
	}
	.resources-dropdown:after {
		left: 60%;
	}
}

.resources-tab-menu-title {
	font-size: 1rem;
	font-weight: bold;
	color: #2b3945;
	line-height: 1.2;
	text-transform: uppercase;
	letter-spacing: 1.5px;
}

.border-right {
	border-right: 1px solid #d9dde1;
}

.resources-menu-overflow-hide {
	overflow: hidden;
	height: 40px;
}

.resources-dropdown a:hover {
	color: #3892e3 !important;
	text-decoration: underline;
}

.resource-dropdown-help-box {
	color: #788290 !important;
	background-color: #ffffff;
	display: block;
	padding: 58px 0px;
}

.resources-dropdown .resource-dropdown-help-box:hover {
	background-color: #f2f3f8;
	text-decoration: none;
}

/*------------------------------------------------
	*product tab menu
*------------------------------------------------*/

.prodcut-tab-menu-title {
	font-size: 1rem;
	font-weight: bold;
	line-height: 1.6;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.product-dropdown {
	width: 650px;
	top: 70px;
	left: -290px;
	box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.3);
}

.product-dropdown:before,
.product-dropdown:after {
	left: 50%;
}

.product-dropdown .ghost-btn {
	border: 1px solid #3892e3;
	color: #3892e3;
	border-radius: 10px;
	background: #fff;
	padding: 4px 12px;
	margin-left: 7px;
	font-size: 0.7rem;
	font-weight: bold;
	letter-spacing: 0.5px;
	position: relative;
	top: -4px;
}

.product-dropdown .evalution-available-btn {
	border: 1px solid #3892e3;
	color: #fff;
	border-radius: 10px;
	background: #3892e3;
	padding: 4px 15px;
	font-size: 0.7rem;
	font-weight: bold;
	letter-spacing: 0.5px;
}

a.product-tab {
	background-color: #ffffff;
	display: block;
	padding: 50px 0;
	height: 100%;
}

a.product-tab:hover {
	background-color: #f2f3f8;
}

/*------------------------------------------------
	GET NOTIFIED DROPDOWN
*------------------------------------------------*/

.getnotified-dropdown {
	width: 600px;
	right: 0px;
}

.getnotified-dropdown:before {
	left: auto;
	right: 10%;
}

.getnotified-dropdown:after {
	left: auto;
	right: 10%;
}

.resources-dropdown,
.product-dropdown,
.getnotified-dropdown {
	top: 70px;
	box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.3);
}

.getnotified-dropdown .btn {
	padding: 12px 20px;
}

.getnotified-dropdown-form form {
	display: -webkit-flex;
	display: flex;
}

.getnotified-dropdown-form .hs_email > label {
	display: none;
}

.getnotified-dropdown-form input {
	padding-left: 0.5rem;
	padding-right: 0.5rem;
}

.getnotified-dropdown-form input[type='email'] {
	height: 34px;
	width: 100%;
}

.getnotified-dropdown-form .hs_email {
	-webkit-flex-grow: 1;
	flex-grow: 1;
	-webkit-flex-basis: 0;
	flex-basis: 0;
	max-width: 100%;
}

.getnotified-dropdown-form .hs_submit {
	padding-left: 0.5rem;
	padding-right: 0.5rem;
	-webkit-flex-grow: initial;
	flex-grow: initial;
	-webkit-flex-basis: initial;
	flex-basis: initial;
}

.getnotified-dropdown-form .hs_submit input {
	outline: none;
}

.getnotified-dropdown-form .invalid-reason {
	margin: 0px;
	padding: 0px;
}

.getnotified-dropdown-form .invalid-reason label {
	text-transform: none;
}

.req-demo-btn {
	background-color: #3cbc8d;
	border-color: #3cbc8d;
}

.req-demo-btn:hover,
.req-demo-btn:focus {
	background-color: #309771;
	border-color: #309771;
}

/*------------------------------------------------
* Common Modal Box Styling
*------------------------------------------------*/

.modal-overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	visibility: hidden;
	top: 0;
	left: 0;
	z-index: 5;
	opacity: 0;
	background: rgba(65, 73, 83, 0.8);
	transition: 0.15s ease;
}

.modal-close-btn {
	position: absolute;
	right: 20px;
	top: 20px;
	display: block;
	cursor: pointer;
	z-index: 1;
}

.modal {
	position: fixed;
	width: 80%;
	max-width: 1200px;
	min-width: 320px;
	opacity: 0;
	visibility: hidden;
	top: 0;
	left: 10%;
	z-index: 6;
	transition: all 0s;
	-webkit-transform: scale(0.7);
	transform: scale(0.7);
	height: 100vh;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
}
.modal * {
	box-sizing: border-box;
}
.modal--small {
	width: 50%;
	left: 25%;
}

.modal a {
	color: #4990e2;
}

.modal-content {
	background: #fff;
	color: #555;
	border-radius: 3px;
	overflow: hidden;
	transition: all 0.15s;
}

.br-0 {
	border-radius: 0;
}

.modal-show {
	visibility: visible;
	-webkit-transform: scale(1);
	transform: scale(1);
	transition-duration: 0.4s;
	opacity: 1;
}

.modal-show ~ .modal-overlay {
	opacity: 1;
	visibility: visible;
	transition-duration: 0.4s;
	transition-delay: 0.4s;
}

.modal-main {
	margin: 0 auto;
	padding: 2.5rem 0;
	overflow-y: scroll;
	max-height: 94vh;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	/* stop scroll paints */
}

.modal-title {
	color: #555;
	font-size: 1.875rem;
	font-weight: 400;
	margin: 0;
}

.free-trial-modal {
	width: 100%;
	max-width: none;
	bottom: 0;
	left: 0;
}

.free-trial-modal__content {
	width: 50%;
	margin: auto;
}

.free-trial-page__left-column {
	max-width: 500px;
	min-height: 100vh;
}
.free-trial-modal__left-column {
	min-height: 435px;
}

.font-style-italic {
	font-style: italic;
}

.modal-sub-title {
	font-size: 0.75rem;
	color: #788290;
	font-weight: 300;
}

.modal-form {
	width: 80%;
	margin: auto;
}

.modal-as-page .modal-form {
	width: 70%;
	max-width: 600px;
	margin: 0 auto;
}
.modal-as-page .free-trial-modal .modal-form {
	width: 75%;
}

@media only screen and (max-width: 1279px) {
	.modal {
		width: auto;
		left: 40px;
		right: 40px;
		height: 100vh;
		display: block;
		overflow: scroll;
	}
	.modal-main {
		max-height: none;
	}
	.modal-form,
	.modal-as-page .modal-form {
		width: 100%;
		max-width: none;
	}
	.free-trial-modal__content {
		width: auto;
		left: 0;
	}
}

@media only screen and (max-width: 767px) {
	.modal {
		left: 15px;
		right: 15px;
	}
	.free-trial-modal-close-btn {
		right: 10px;
		top: 10px;
	}
}

.modal-form label {
	text-transform: none;
	display: inline-block;
}

.modal-form select {
	padding: 4px 8px;
	background: #fff;
	border: 1px solid #d9dde1;
	height: 2.25rem;
	color: #555;
	font-family: inherit;
	-webkit-appearance: none;
	-moz-appearance: none;
	border-radius: 2px;
	background: url('https://static.wingify.com/vwo/wp-content/plugins/vwo-common-templates/images/modals/select-down-arrow.svg')
		no-repeat;
	background-position: 98% 50%;
}

.modal-form select:focus {
	border-color: #b8b8b8;
}

@media only screen and (max-height: 800px) {
	.modal {
		top: 0;
	}
	.modal-main {
		max-height: 100vh;
	}
}

/*input:invalid:focus {
    border-color: #EB5055 !important;
}*/

.invalid-reason {
	font-size: 0.8rem;
	opacity: 0;
	transition: all 200ms;
}

.invalid-input {
	border-color: #eb5055 !important;
}

/*input:invalid:focus + .invalid-reason,*/

.invalid-input > .invalid-reason,
.invalid-input + .invalid-reason {
	opacity: 1;
}

.submission-success > form {
	display: none;
}

.modal .success-message {
	display: none;
}

.submission-success > .success-message {
	display: block;
}

.success-message-container {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 355px;
	width: 80%;
	margin: auto;
}

.modal .error-message {
	text-align: center;
	border: 1px solid indianred;
	border-radius: 3px;
	margin: 20px 40px;
	color: indianred;
	background: #ffeded;
	padding: 10px;
}

.modal-form-radio {
	display: inline;
}

.modal-form input[type='radio']:nth-of-type(2n) {
	margin-left: 1rem;
}

.modal-form input[type='number']::-webkit-inner-spin-button,
.modal-form input[type='number']::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.btn-modal-form-submit {
	padding: 1.25rem 3rem;
	font-size: 0.825rem;
	text-transform: uppercase;
	margin-top: 1rem;
}

.free-trial-btn-modal-form-submit {
	padding: 0.9rem 0;
	margin-top: 0;
}

/* General Sidebar Styling */

#secondary {
	position: relative;
}

#sidebar {
	padding: 0;
	position: -webkit-sticky;
	position: sticky;
	top: 100px;
}

/*Modal Sidebar*/

.modal-ft-v1 .modal-sidebar {
	background-image: url('https://static.wingify.com/vwo/wp-content/plugins/vwo-common-templates/images/modals/graph-backdrop.svg');
	background-color: #301f55;
}

.modal-ft-v2 .modal-sidebar {
	background-image: url('https://static.wingify.com/vwo/wp-content/plugins/vwo-common-templates/images/modals/ft-v2-sidebar.png');
}

.webp .modal-ft-v2 .modal-sidebar {
	background-image: url('https://static.wingify.com/vwo/wp-content/plugins/vwo-common-templates/images/modals/ft-v2-sidebar.webp');
}

.modal-contact-us .modal-sidebar {
	background: #3b2a5e
		url('https://static.wingify.com/vwo/wp-content/plugins/vwo-common-templates/images/modals/world-map.png')
		no-repeat bottom;
	background-size: contain;
	padding: 8rem 3rem 3rem;
	color: white;
}

.webp .modal-contact-us .modal-sidebar {
	background-image: url('https://static.wingify.com/vwo/wp-content/plugins/vwo-common-templates/images/modals/world-map.webp');
}

@media only screen and (min-width: 768px) and (max-width: 1279px) {
	.modal-contact-us .modal-sidebar {
		background-position: bottom 4% left;
		background-size: auto;
		width: 100%;
	}
}

@media only screen and (min-width: 1600px),
	only screen and (-moz-min-device-pixel-ratio: 1.5),
	only screen and (-webkit-min-device-pixel-ratio: 1.5),
	only screen and (min-device-pixel-ratio: 1.5),
	only screen and (min-resolution: 1.5dppx) {
	.modal-contact-us .modal-sidebar {
		background: #3b2a5e
			url('https://static.wingify.com/vwo/wp-content/plugins/vwo-common-templates/images/modals/world-map@2x.png')
			no-repeat bottom;
		background-size: contain;
	}
	.webp .modal-contact-us .modal-sidebar {
		background-image: url('https://static.wingify.com/vwo/wp-content/plugins/vwo-common-templates/images/modals/world-map@2x.webp');
	}
}

.modal-sidebar {
	background-repeat: no-repeat;
	background-size: 100%;
	padding: 5rem 2.5rem 3rem 2.5rem;
	color: #fff;
	background-position: right bottom;
}

.modal-sidebar ul {
	padding: 0;
}

.modal-sidebar li {
	margin-bottom: 0.75rem;
}

.product-title {
	font-size: 0.825rem;
	font-weight: bold;
}

.product-subtitle {
	font-size: 0.75rem;
	font-weight: 200;
}

.modal-testimonial {
	position: relative;
	padding-left: 40px;
}

.modal-testimonial:before {
	content: url('https://static.wingify.com/vwo/wp-content/plugins/vwo-common-templates/images/modals/testimonial-quotes.svg');
	position: absolute;
	left: 0;
	top: 0;
	display: block;
}

.modal-tesimonial-profile-pic {
	border-radius: 50%;
	border: 1px solid #fff;
	width: 30px;
	height: 30px;
}

svg.close-btn-dark path,
svg.close-btn-light path {
	transition: all 0.3s;
}

svg.close-btn-dark:hover path,
svg.close-btn-light:hover path {
	opacity: 1;
}

@media only screen and (min-width: 1600px) {
	.modal {
		left: calc(50vw - 600px) !important;
	}
	.free-trial-modal {
		left: 0 !important;
	}
}

.form-error-message,
.form-error-message label {
	text-transform: none;
	font-size: 0.8125rem;
	color: #fa6161 !important;
}

.submitted-message {
	text-align: center;
	font-size: 1.125rem;
	color: #d9dde1;
	margin-top: 1rem;
}

/*Modal Sucess message*/

.email_post_container {
	display: none;
	text-align: center;
}

.email_post_container .logo {
	height: 45px;
}

.email_post_container .signup-heading {
	font-size: 30px;
	margin-top: 15px;
}

.email_post_container .signup-tagline-sub-1 {
	font-size: 14px;
	width: 95%;
	text-align: center;
	display: inline-block;
	font-weight: 100;
	color: #555;
	margin: 47px 0px 10px;
}

.email_post_container .signup-tagline-sub-1 span {
	color: #3e94e0;
}

.email_post_container .signup-tagline-sub-2 {
	font-size: 20px;
	font-weight: 100;
	margin-bottom: 10px;
	color: #393939;
}

.email_post_container .signup-tagline-sub-4 {
	margin-top: 10px;
}

.email_post_container .signup-tagline-sub-4 a {
	color: #3e94e0;
}

.email_post_container .signup-tagline {
	margin-bottom: 30px;
	font-size: 14px;
	line-height: 18px;
	color: #8b95a1;
}

.email_post_container .signup-event-box-heading {
	color: #555555;
	font-size: 30px;
	line-height: 36px;
	text-align: center;
	font-weight: normal;
}

/* 404 page */

.section-404-bg {
	background-image: url('https://static.wingify.com/vwo/wp-content/themes/vwo/images/404.svg');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: bottom center;
}

.title-404 {
	font-size: 4rem;
	color: #675da6;
	line-height: 1.2;
	font-weight: 500;
}

.list-style-disc {
	list-style: disc;
}

/* noscript styling */

.noscript-wrapper {
	width: 100%;
	padding: 0.75rem 2rem;
	text-align: center;
	font-size: 1rem;
	line-height: 1.5rem;
	background: #ae0000;
	margin-top: 0;
	color: #fff;
	position: relative;
	z-index: 5;
}

/* Password show-hide toggle and checklist validation UI */

.password-show-hide-button {
	position: absolute;
	top: 42px;
	right: 15px;
	line-height: 1;
	color: #788290;
	cursor: pointer;
}

.password-checklist-box {
	position: absolute;
	right: 0;
	top: calc(100% - 21px);
	border: 1px solid #d9dde1;
	border-radius: 2px;
	background-color: #f5f7f8;
	font-size: 0.875rem;
	padding: 15px;
	opacity: 0;
	visibility: none;
	transition: all 0.25s ease 0.25s;
	color: #555;
}

.password-checklist-box li.error {
	color: red;
}

.password-checklist-box li:before {
	margin-right: 8px;
	width: 16px;
	height: 16px;
	/* line-height: 16px; */
	display: inline-block;
	vertical-align: middle;
}

.password-checklist-box li.error:before {
	content: url(https://static.wingify.com/vwo/wp-content/plugins/vwo-common-templates/images/pwd-checklist-error-icon.svg);
}

.password-checklist-box li:before {
	content: url(https://static.wingify.com/vwo/wp-content/plugins/vwo-common-templates/images/pwd-checklist-icon.svg);
}

.password-checklist-box li.checked:before {
	content: url(https://static.wingify.com/vwo/wp-content/plugins/vwo-common-templates/images/pwd-checklist-checked-icon.svg);
}

.password-checklist {
	padding-left: 0;
	margin: 0;
	list-style: none;
}

input[name='password']:focus ~ .password-checklist-box,
input[name='password'].invalid-input ~ .password-checklist-box {
	opacity: 1;
	visibility: visible;
	transition-delay: 0;
}

.mt-2 {
	margin-top: 2px;
}

/* Dots Animation */
.loader {
	display: inline-flex;
}

.dot {
	display: block;
	width: 10px;
	height: 10px;
	margin: 4px;
	border-radius: 5px;
	background-color: #1a1a1a;
}

.pulse {
	will-change: transform, opacity;
	-webkit-animation: pulse 1.25s infinite ease;
	animation: pulse 1.25s infinite ease;
}
.pulse__one {
	-webkit-animation-delay: 250ms;
	animation-delay: 250ms;
}
.pulse__two {
	-webkit-animation-delay: 500ms;
	animation-delay: 500ms;
}
.pulse__three {
	-webkit-animation-delay: 750ms;
	animation-delay: 750ms;
}

@keyframes pulse {
	0% {
		opacity: 0.5;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	50% {
		opacity: 1;
		-webkit-transform: scale(1.25);
		transform: scale(1.25);
	}
	100% {
		opacity: 0.5;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

.geoip-country-JP .pricing-item-wrapper--standard,
.geoip-country-JP .comparision-list__table[type='plan'] .price-text {
	display: none;
}
/*Country specific telephone number UI */
.vwo-phone-number {
	display: none;
}
.vwo-phone-number.phone-ROW {
	display: block;
}

.geoip-country-AU .phone-ROW,
.geoip-country-SG .phone-ROW,
.geoip-country-US .phone-ROW,
.geoip-country-GB .phone-ROW {
	display: none !important;
}

.geoip-country-AU .phone-AU {
	display: inline-block !important;
}

.geoip-country-SG .phone-SG {
	display: inline-block !important;
}

.geoip-country-GB .phone-GB {
	display: inline-block !important;
}

.geoip-country-US .phone-US {
	display: inline-block !important;
}
