/**
 * Style.css
 * =========
 *
 * Important Notes
 *
 * The navbar currently has a height of 50px. If this changes, the padding on
 * the body needs to change as well. Specifically, the padding-top rule must
 * match the total height of the navbar (minus any border-width).
 *
 * Base Styles
 * -----------
 *
 * - Body Copy:
 *
 *   Font Size: 22px
 *   Font Weight: 300 (Light)
 *   Line Height: 1.5 (33px)
 *   Margins: Vertical - 3em (66px),
 *            Horizontal - 0
 *
 * Typekit Fonts
 * -------------
 *
 * - Proxima Nova:
 *
 *   font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
 *
 *   Typeface | CSS Rule
 *   -------- | -----------------
 *   Thin     | font-weight: 100;
 *   Light    | font-weight: 300;
 *   Regular  | font-weight: 400;
 *   Bold     | font-weight: 700;
 */

/**
 * ----------------------------------------------------------------------------
 * Resets
 * ----------------------------------------------------------------------------
 */

body,
input[type="button"],
input[type="submit"],
input[type="reset"],
button {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6, ul, ol, li {
	margin: 0;
	padding: 0;
}

h1, h2, h3, h4, h5, h6 {
	text-rendering: optimizeLegibility;
}

/**
 * ----------------------------------------------------------------------------
 * Basic Styling
 * ----------------------------------------------------------------------------
 */

/*
 * Selections
 * https://developer.mozilla.org/en-US/docs/Web/CSS/%3A%3Aselection#Examples
 */
::-moz-selection {
	background-color: darkorange;
	color: #fff;
	text-shadow: none;
}

::selection {
	background-color: darkorange;
	color: #fff;
	text-shadow: none;
}

body {
	background: #fff;
	font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 22px;
	font-weight: 300;
	line-height: 1.5; /* 33px */
	overflow-x: hidden; /* Required for "off-the-page" goodness */
	padding-top: 50px; /* Must match navbar height */
}

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

.image-responsive {
  max-width: 100%;
}

/*
 * Remove the outline from buttons when pressing because it's annoying.
 */
.btn:active,
.btn:active.focus,
.btn.active.focus,
.btn.active:focus,
.btn:active:focus,
.btn:hover,
.btn:hover:active {
	outline: 0;
}

/*
 * Primary Button (aka Trial Button in Navbar)
 */

/* Orange Gradient Colors
 * ======================
 *
 * Default State
 * ----------------
 * Lighter: #ffb03b (Top)
 * Darker: #ff8420 (Bottom)
 *
 * Hover State
 * ----------------
 * Lighter: #ffbf43 (Top)
 * Darker: #ff9626 (Bottom)
 *
 * Active State
 * ----------------
 * Lighter: #ffbf43 (Bottom)
 * Darker: #ff9626 (Top)
 */

.btn-primary {
	background-color: #ff8420;
	background-image: -moz-linear-gradient(#ffb03b, #ff8420);
	background-image: -ms-linear-gradient(#ffb03b, #ff8420);
	background-image: -o-linear-gradient(#ffb03b, #ff8420);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffb03b), to(#ff8420));
	background-image: -webkit-linear-gradient(#ffb03b, #ff8420);
	background-image: linear-gradient(#ffb03b, #ff8420);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffb03b', endColorstr='#ffff8420', GradientType=0);
	filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
	background-position: 0 0;
	box-shadow: 0px 1px 0px rgba(255,255,255,0.25),
				inset 0px 1px 0px rgba(255,255,255,0.6);
	border-color: #d47120;
	border-top-color: #e89047;
	transition: all 0.2s;
}

.btn-primary:hover,
.btn-primary:focus {
	background-color: #ff9626;
	background-image: -moz-linear-gradient(#ffbf43, #ff9626);
	background-image: -ms-linear-gradient(#ffbf43, #ff9626);
	background-image: -o-linear-gradient(#ffbf43, #ff9626);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffbf43), to(#ff9626));
	background-image: -webkit-linear-gradient(#ffbf43, #ff9626);
	background-image: linear-gradient(#ffbf43, #ff9626);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffbf43', endColorstr='#ffff9626', GradientType=0);
	filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
	background-position: 0 0;
	border-color: #ff9626 #dc8120 #c1701a;
}

.btn-primary:hover {
	box-shadow: 0 4px 6px -3px rgba(0,0,0,.5),
				inset 0 1px 0 rgba(255,255,255,.7);
}

.btn-primary:focus {
	outline-color: orangered;
}

/*
 * Default Button (aka Login Button in Navbar)
 */

.btn-default {
	box-shadow: 0 1px 0 rgba(255,255,255,0.25),
				inset 0 1px 0 rgba(255,255,255,0.9);
}

.btn-default:hover,
.btn-default:active {
	background-color: #e0e0e0;
	background-position: 0 -15px;
}

.btn-default:active {
	box-shadow: inset 0 3px 5px rgba(0,0,0,.125);
}

.btn-primary,
.btn-success,
.btn-warning,
.btn-danger,
.btn-info {
	box-shadow: 0 1px 0 rgba(255,255,255,0.25),
				inset 0 1px 0 rgba(255,255,255,0.4);
}

.btn-success:active,
.btn-success:active:focus {
	background-image: -moz-linear-gradient(#ff9626, #ffbf43);
	background-image: -ms-linear-gradient(#ff9626, #ffbf43);
	background-image: -o-linear-gradient(#ff9626, #ffbf43);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ff9626), to(#ffbf43));
	background-image: -webkit-linear-gradient(#ff9626, #ffbf43);
	background-image: linear-gradient(#ff9626, #ffbf43);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffbf43', endColorstr='#ffff9626', GradientType=0);
	filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
	background-position: 0 0;
	box-shadow: inset 0 2px 10px rgba(0,0,0,0.25),
				0 1px 0 rgba(255,255,255,0.5);
	border-color: #ca6f0d #dc8527 #ec8f2b;
}

.btn-primary:active,
.btn-primary:active:focus {
	background-image: -moz-linear-gradient(#ff9626, #ffbf43);
	background-image: -ms-linear-gradient(#ff9626, #ffbf43);
	background-image: -o-linear-gradient(#ff9626, #ffbf43);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ff9626), to(#ffbf43));
	background-image: -webkit-linear-gradient(#ff9626, #ffbf43);
	background-image: linear-gradient(#ff9626, #ffbf43);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffbf43', endColorstr='#ffff9626', GradientType=0);
	filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
	background-position: 0 0;
	box-shadow: inset 0 2px 10px rgba(0,0,0,0.25),
				0 1px 0 rgba(255,255,255,0.5);
	border-color: #ca6f0d #dc8527 #ec8f2b;
}

/**
 * ----------------------------------------------------------------------------
 * Header
 * ----------------------------------------------------------------------------
 */

.header {
	min-height: 500px;
	margin-top: -50px; /* Must be negative value of navbar height. */
}

.header .container {
	padding-top: 50px; /* Must be value of navbar height. */
}

@media (max-width: 767px) {
	.header .container {
		padding-top: 0;
	}
}

.header + section {
	overflow: hidden;
}

.navbar {
font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
	margin-bottom: 0; /* Adding this so layout isn't as confusing in dev tools. */
}

#main-nav,
.navbar-brand {
	-webkit-font-smoothing: subpixel-antialiased;
	-moz-osx-font-smoothing: auto;
}

#main-nav li a {
    text-shadow: 0px 0px 3px #000;
    font-size:13px;
    font-weight:400;
    text-transform: none;
}

.navbar-inverse.navbar-translucent {
	background-color: transparent;
	background-image: -moz-linear-gradient(to bottom,rgba(60,60,60,0.5) 0,rgba(34,34,34,0.5) 100%);
	background-image: -ms-linear-gradient(to bottom,rgba(60,60,60,0.5) 0,rgba(34,34,34,0.5) 100%);
	background-image: -webkit-linear-gradient(top,rgba(60,60,60,0.5) 0,rgba(34,34,34,0.5) 100%);
	background-image: -o-linear-gradient(top,rgba(60,60,60,0.5) 0,rgba(34,34,34,0.5) 100%);
	background-image: -webkit-gradient(linear,left top,left bottom,from(rgba(60,60,60,0.5)),to(rgba(34,34,34,0.5)));
	background-image: linear-gradient(to bottom,rgba(60,60,60,0.5) 0,rgba(34,34,34,0.5) 100%);
	border-bottom: 1px solid rgba(255,255,255,0.1);
}

.navbar-inverse.navbar-translucent.less-alpha,
.dashboard.light .navbar-inverse.navbar-translucent,
.polls .navbar-inverse.navbar-translucent,
.chat .navbar-inverse.navbar-translucent,
.form-analytics .navbar-inverse.navbar-translucent,
.home .navbar-inverse.navbar-translucent {
	background-color: transparent;
	background-image: -moz-linear-gradient(to bottom,rgba(60,60,60,0.8) 0,rgba(34,34,34,0.8) 100%);
	background-image: -ms-linear-gradient(to bottom,rgba(60,60,60,0.8) 0,rgba(34,34,34,0.8) 100%);
	background-image: -webkit-linear-gradient(top,rgba(60,60,60,0.8) 0,rgba(34,34,34,0.8) 100%);
	background-image: -o-linear-gradient(top,rgba(60,60,60,0.8) 0,rgba(34,34,34,0.8) 100%);
	background-image: -webkit-gradient(linear,left top,left bottom,from(rgba(60,60,60,0.8)),to(rgba(34,34,34,0.8)));
	background-image: linear-gradient(to bottom,rgba(60,60,60,0.8) 0,rgba(34,34,34,0.8) 100%);
	-webkit-box-shadow: 0px 0px 20px rgba(0,0,0,0.3);
	-box-shadow: 0px 0px 20px rgba(0,0,0,0.3);
	-moz-box-shadow: 0px 0px 20px rgba(0,0,0,0.3);
	box-shadow: 0px 0px 20px rgba(0,0,0,0.3);
}

.navbar-inverse.navbar-translucent .navbar-nav > li > a,
.navbar-inverse.navbar-translucent .navbar-brand {
	color: #fff; /* #9d9d9d when navbar isn't translucent */
	text-decoration:none;
	text-shadow:none;
	-webkit-transition: 250ms linear 0s;
	-moz-transition: 250ms linear 0s;
	-o-transition: 250ms linear 0s;
	transition: 250ms linear 0s;

}
.navbar-inverse.navbar-translucent .navbar-nav > li > a:hover{
	text-shadow: 0px 0px 15px #fff !important ;
	text-decoration: underline !important ;
}

.navbar-inverse.navbar-translucent .navbar-nav > .active > a,
.navbar-inverse.navbar-translucent .navbar-nav > .open > a {
	background-color: transparent;
	background-image: -moz-linear-gradient(to bottom,rgba(8,8,8,0.5) 0,rgba(15,15,15,0.5) 100%);
	background-image: -ms-linear-gradient(to bottom,rgba(8,8,8,0.5) 0,rgba(15,15,15,0.5) 100%);
	background-image: -webkit-linear-gradient(top,rgba(8,8,8,0.5) 0,rgba(15,15,15,0.5) 100%);
	background-image: -o-linear-gradient(top,rgba(8,8,8,0.5) 0,rgba(15,15,15,0.5) 100%);
	background-image: -webkit-gradient(linear,left top,left bottom,from(rgba(8,8,8,0.5)),to(rgba(15,15,15,0.5)));
	background-image: linear-gradient(to bottom,rgba(8,8,8,0.5) 0,rgba(15,15,15,0.5) 100%);
	color: #fff;
}

.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-brand:hover {
	color: #fff;
}

/*
 * Dark Translucent Navbar Buttons
 */
.navbar-inverse.navbar-translucent .btn {
	background-clip: padding-box;
	background-position: 0 0;
	background-repeat: repeat-x;
	border: 1px solid;
	border-color: rgb(34,34,34); /* Legacy Fallback */
	border-color: rgba(0,0,0,0.5);
	font-size: 14px;
	font-weight: 500;
	margin-top: 8px;
	margin-bottom: 8px;
	padding: 6px 12px;
	text-transform: none;
}

.navbar-inverse.navbar-translucent .btn:hover,
.navbar-inverse.navbar-translucent .btn:active,
.navbar-inverse.navbar-translucent .btn:focus {
	background-position: 0 0;
}

.navbar-inverse.navbar-translucent .btn-default {
	box-shadow: 0px 1px 0px rgba(255,255,255,0.25),
				inset 0px 1px 0px rgba(255,255,255,0.9);
}

.navbar-inverse.navbar-translucent .btn-default:hover {
	background-color: #fff;
	background-image: none;
}

.navbar-inverse.navbar-translucent .btn-default:active,
.navbar-inverse.navbar-translucent .btn-default:hover:active {
	background-color: #e0e0e0;
	box-shadow: 0px 1px 0px rgba(255,255,255,0.25),
				inset 0 3px 5px rgba(0,0,0,.125);
}

.navbar-inverse.navbar-translucent .btn-primary,
.navbar-inverse.navbar-translucent .btn-success,
.navbar-inverse.navbar-translucent .btn-warning,
.navbar-inverse.navbar-translucent .btn-danger,
.navbar-inverse.navbar-translucent .btn-info {
	box-shadow: 0px 1px 0px rgba(255,255,255,0.25),
				inset 0px 1px 0px rgba(255,255,255,0.6);
}

/*.navbar-brand {*/
.navbar-nav > li {
	border-left: 1px solid;
	border-left-color: rgb(34,34,34); /* Fallback */
	border-left-color: rgba(0,0,0,0.3);
	border-right: 1px solid;
	border-right-color: rgb(68,68,68); /* Fallback */
	border-right-color: rgba(255,255,255,0.1);
	font-size: 11px;
	font-weight: 700;
	/*min-width: 100px;*/
	text-align: center;
	text-transform: uppercase;
}

.navbar-brand {
	padding: 7px 15px;
}

@media (max-width: 768px) {
	.navbar-nav > li.btn-item > a.btn {
		margin-top: 0;
		margin-bottom: 0;
	}
}

.navbar-nav > .btn-item > .btn.btn-primary {
	color: #fff;
}

.navbar-nav > .btn-item > .btn.btn-default {
	color: #333;
	text-shadow: 0 1px 0 #fff;
}

@media (max-width: 1207px) {
	.navbar-nav > li {
		min-width: 0;
	}
}

@media (max-width: 800px) {
	.navbar-nav > li {
		font-size: 10px;
	}
}

.navbar-nav.navbar-btn-group > li {
	border: 0;
	min-width: 0;
	padding: 0 15px 0 0;
}

.navbar-inverse .navbar-nav > .active,
.navbar-inverse .navbar-nav > .open {
	/*border-left-color: rgb(34,34,34);*/
	/*border-left-color: rgba(0,0,0,0.3);*/
	/*border-right-color: rgb(34,34,34);*/
	/*border-right-color: rgba(0,0,0,0.3);*/
	border-left-color: rgba(0,0,0,0.6);
	border-right-color: rgba(0,0,0,0.6);
}

.navbar-inverse .navbar-nav > .active + li {
	border-left-color: rgb(68,68,68); /* Fallback */
	border-left-color: rgba(255,255,255,0.1);
}

.navbar-nav > li:last-child::after {
	content: "";
	background: rgb(34,34,34);
	background: rgba(0,0,0,0.3);
	position: absolute;
	right: -2px;
	top: 0;
	height: 100%;
	width: 1px;
}
#btn-list-md > li:last-child::after
{
	display:none;
}
.navbar-inverse .navbar-nav > .active:last-child,
.navbar-inverse .navbar-nav > .open:last-child {
	border-left: 0;
	border-right: 0;
}

.navbar-inverse .navbar-nav > .active:last-child::after,
.navbar-inverse .navbar-nav > .open:last-child::after {
	content: none;
}

@-webkit-keyframes shimmy {
	50% {
		-webkit-transform: scale3d(0.75, 0.75, 1);
		transform: scale3d(0.75, 0.75, 1);
	}
}
@-moz-keyframes shimmy {
	50% {
		-moz-transform: scale3d(0.75, 0.75, 1);
		transform: scale3d(0.75, 0.75, 1);
	}
}
@-o-keyframes shimmy {
	50% {
		-o-transform: scale3d(0.75, 0.75, 1);
		transform: scale3d(0.75, 0.75, 1);
	}
}
@keyframes shimmy {
	50% { transform: scale3d(0.75, 0.75, 1); }
}

.navbar-brand > img {
	position: relative;
	top: 2px;
}

.navbar-brand:hover > img {
	-webkit-animation: shimmy 0.3s 1;
	-moz-animation: shimmy 0.3s 1;
	-o-animation: shimmy 0.3s 1;
	animation: shimmy 0.3s 1;
}

@media (max-width: 767px) {

	.navbar-inverse.navbar-translucent {
		background-image: -webkit-linear-gradient(to bottom,rgba(60,60,60,0.85) 0,rgba(34,34,34,0.85) 100%);
		background-image: linear-gradient(to bottom,rgba(60,60,60,0.85) 0,rgba(34,34,34,0.85) 100%);
	}

	.navbar-btn-group {
		float: right;
		margin-right: 6px;
	}

	.navbar-btn-group > li {
		float: left;
	}

	.navbar-btn,
	.navbar-btn-group .btn {
		margin: 0;
		max-width: none;
	}

	.navbar-btn::after,
	.navbar-btn-group .btn::after {
		content: none;
	}

	.navbar-nav > li:last-child::after {
		display: none;
	}
}

@media (max-width: 1036px) {
	.navbar-nav > li {
		min-width: 50px;
	}
}

@media (max-width: 960px) {

	.navbar-nav > li {
		min-width: 0;
	}

	.navbar-nav > li > a,
	.navbar-brand {
		padding-left: 10px;
		padding-right: 10px;
	}

	.navbar-nav.navbar-btn-group > li {
		padding-right: 10px;
	}
}

.header .heading-group {
	margin: 4em 0 2em;
	position: relative;
}

.dashboard .header .heading-group {
	margin: 4.2em 0 2em;
	position: relative;
}

/*
 * Trial Signup Field and Button
 */

.form-cta {
	margin-bottom: 3em;
}

.form-cta input[type="text"] {
	border-radius: 8px 0 0 8px;
	font-size: 24px;
	height: 48px;
	line-height: 1.375;
}

.header .form-cta input[type="text"]:focus {
	box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 20px 1px rgba(102,175,233,0.85);
	border-color: #11a7ff;
}

.form-cta .input-group .btn {
	/*border: 0;*/
	/*border-left: 1px solid #e77b00;*/
	border-radius: 0 8px 8px 0;
	box-shadow: inset 0px 1px 0px rgba(255,255,255,0.35);
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 21px;
	font-weight: 700;
	/*line-height: 1.57;*/
	padding: 8px 18px;
	text-shadow: 0px -1px 0px #c66910;
	z-index: 2; /* Force the border to always show because it just looks better. */
}

.form-cta .h2 {
	margin-bottom: 0;
}

.form-cta .h3 {
	font-size: 48px;
	font-weight: 700;
	line-height: 1.375;
	margin-bottom: 0;
}

.form-cta label {
	color: #777;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.375;
	margin-bottom: 1.375em;
	letter-spacing: -0.01em;
}

/*
 * Call-to-Action Field & Button
 * Extra Small Devices
 */

@media (max-width: 767px) {

	.form-cta .input-group {
		display: block;
	}

	.form-cta .input-group .form-control:first-child {
		border-radius: 8px;
		display: block;
		float: none;
		margin-bottom: 0.5em;
	}

	.form-cta .input-group-btn {
		display: block;
		width: 100%;
	}

	.form-cta .input-group .btn {
		border-radius: 8px;
		width: 100%;
	}
}

/**
 * ----------------------------------------------------------------------------
 * Content
 * ----------------------------------------------------------------------------
 */

p {
	font-size: 22px;
	line-height: 1.5;
	margin-bottom: 1.5em;
}

p:last-child {
	margin-bottom: 0;
}

/* This is causing weird borders on images with hrefs */
/*
section[role="main"] a:hover {
	border-bottom: 1px solid;
	text-decoration: none;
}
*/
hr {
	font-size: 22px;
	line-height: 1.5;
	margin: 3em 0;
}

blockquote > p {
	margin-bottom: 0;
}

blockquote > footer {
	font-size: 15px;
	line-height: 2.2;
}

dl {
	color: #555;
	font-size: 18px;
	line-height: 1.5;
	margin-bottom: 1.5em;
}

dt, dd, dd p {
	font-size: inherit;
	line-height: inherit;
}

dd, dd p {
	margin-bottom: inherit;
}

dd:last-child,
dd p:last-child {
	margin-bottom: 0;
}

/* Padding Classes */
.padded-box.pad-top { padding-top: 50px; }
.padded-box.pad-bottom { padding-bottom: 50px; }
.padded-box.pad-left { padding-left: 50px; }
.padded-box.pad-right { padding-right: 50px; }
.padded-box.pad-all { padding: 50px; }
.padded-box.pad-x { padding-left: 50px; padding-right: 50px; }
.padded-box.pad-y { padding-top: 50px; padding-bottom: 50px; }
.padded-box.pad-x-2 { padding-left: 100px; padding-right: 100px; }
.padded-box.pad-y-2 { padding-top: 100px; padding-bottom: 100px; }

@media (max-width: 768px) {
	.padded-box.pad-left { padding-left: 25px; }
	.padded-box.pad-right { padding-right: 25px; }
	.padded-box.pad-all { padding: 50px 25px; }
	.padded-box.pad-x { padding-left: 25px; padding-right: 25px; }
}

/* Margin Classes */
.margin-box.margin-top { margin-top: 50px; }
.margin-box.margin-bottom { margin-bottom: 50px; }
.margin-box.margin-left { margin-left: 50px; }
.margin-box.margin-right { margin-right: 50px; }
.margin-box.margin-all { margin: 50px; }
.margin-box.margin-x { margin-left: 50px; margin-right: 50px; }
.margin-box.margin-y { margin-top: 50px; margin-bottom: 50px; }
.margin-box.margin-x-2 { margin-left: 100px; margin-right: 100px; }
.margin-box.margin-y-2 { margin-top: 100px; margin-bottom: 100px; }

/* Font Weight Classes */
.text-thin    { font-weight: 100 !important; }
.text-light   { font-weight: 300 !important; }
.text-regular { font-weight: 400 !important; }
.text-bold    { font-weight: 700 !important; }

/* Font Color Classes */
.text-color-lightest { color: #fff    !important; }
.text-color-lighter  { color: #aaa    !important; }
.text-color-light    { color: #777    !important; }
.text-color-default  { color: #7a7a7a !important; }
.text-color-dark     { color: #333    !important; }
.text-color-darker   { color: #191919 !important; }
.text-color-darkest  { color: #000    !important; }

/* Heading Groups */
.heading-group .heading,
.heading-group .subheading,
.heading-group .leader {
	display: block;
	font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
	text-align: center;
	text-rendering: optimizeLegibility;
	text-shadow: 0px 1px 4px rgba(0, 0, 0, 0.7);
}

.heading-group.contrast-shadow .heading {
	text-shadow: 0px 1px 4px rgba(0, 0, 0, 0.7),
				 0 0 100px #000;
}

.heading-group.contrast-shadow .subheading,
.heading-group.contrast-shadow .leader,
.heading-group.contrast-shadow p {
	text-shadow: 0px 1px 4px rgba(0, 0, 0, 0.7),
				 0 0 50px rgba(0,0,0,0.5);
}

.heading-group .heading {
	color: #fff;
	font-size: 66px;
	font-weight: 700;
	letter-spacing: -0.01em;
	line-height: 1;
}

.heading-group .subheading,
.heading-group .leader {
	color: #fff;
	font-size:44px;
	font-weight:bold;
	letter-spacing: -0.0167em;
	line-height: 1.5;
	margin: 0;
}

.heading-group.inverse .heading,
.heading-group.inverse .subheading,
.heading-group.inverse .leader {
	color: #333;
	text-shadow: 0px 1px 0px rgba(255,255,255,0.7);
}

@media (max-width:767px) {
	.heading-group .heading {
		font-size: 52px;
	}

	.heading-group .subheading {
		font-size: 32px;
		line-height: 1.375;
	}
}

.section-heading {
	text-align: center;
}

.icon-block-group {
	padding: 3em 0;
	text-align: center;
}

.icon-block-group img {
	margin-left: auto;
	margin-right: auto;
	max-width: 100%;
	width: auto;
}

@media (max-width: 991px) {
	.icon-block .icon-block-title {
		font-size: 45px;
		line-height: inherit;
	}
}

.caption p {
	color: #7a7a7a;
	margin-bottom: 1.5em;
}

h2,
.h2 {
	color: #383838;
	font-size: 48px;
	font-weight: 100;
	line-height: 1.375;
	letter-spacing: -0.03em;
	margin: 0.344em 0;
}

h2 + .lead {
	margin-top: 0;
}

h3,
.h3 {
	color: #515151;
	font-size: 26px;
	font-weight: 700;
	line-height: 1.3;
	margin: 0 0 1em;
}

.image-block {
	margin-bottom: 2em;
}

.img-large {
	margin: 2em auto;
}

.img-wide {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.list {
	margin-bottom: 1.5em;
	margin-left: 1em;
}

.in-the-press img {
	display: block;
	margin-left: auto;
	margin-right: auto;
	max-width: 100%;
}

/*section[role="main"] a:focus,*/
/*section[role="main"] a:hover {*/
/*	border-bottom: 1px solid;*/
/*	text-decoration: none;*/
/*}*/

/**
 * ----------------------------------------
 * Feature Blocks
 * ----------------------------------------
 *
 * A feature block contains the following:
 *
 * - A title
 * - A "lead" paragraph
 * - A quote from a user
 * - A large "hero" image
 */

.feature-block {
	margin-bottom: 6em;
}

.padded-box.pad-y .feature-block:last-child,
.padded-box.pad-bottom .feature-block:last-child {
	margin-bottom: 0;
}

/*.feature-block h2 {
	margin-top: 0;
}*/

.feature-block .feature-details > p {
	color: #7a7a7a;
	font-weight: 300;
	font-size: 22px;
	line-height: 1.5;
	margin-top: 0.75em;
	margin-bottom: 1.5em;
}

.feature-block blockquote {
	/*margin-bottom: 1.886em;*/
	color: #000;
	font-weight: bolder;
	font-size: 22px;
	line-height: 1.5;
	margin-top: 0.75em;
	margin-bottom: 1.5em;
}

.feature-block .feature-hero .hero-image {
	max-width: none;
}

@media (max-width: 767px) {
	.feature-hero {
		overflow: hidden;
	}
}

.hero-tip {
	background-color: #222;
	background-color: rgba(0,0,0,0.5);
	border-radius: 5px;
	bottom: 110px;
	color: #ddd;
	font-weight: 500;
	padding: 2px 15px;
	position: absolute;
	text-shadow: 0px 1px 2px rgba(0,0,0,0.5);
	z-index: 3;
}

@media (max-width: 768px) {
	.feature-block .feature-hero,
	.feature-block .feature-hero .hero-image {
		max-width: 100%;
	}
}

@media (min-width: 768px) {
	.feature-block .feature-hero {
		overflow-x: visible;
	}
}

/**
 * ----------------------------------------
 * Feature Sub List
 * ----------------------------------------
 *
 * A feature sub list contains the following:
 *
 * - A title
 * - A short description
 */

.feature-sub-list {
  margin-top: 1.8em;
  list-style: none;
}

/* No borders */
.feature-sub-list.border-none .item {
  border-bottom: none;
}

.feature-sub-list.border-none .item:not(:last-child) {
  margin-bottom: 0;
}

/* Hover state */
.feature-sub-list.hover-state {
  /*margin: 0;*/
}

.feature-sub-list.hover-state .item {
  border-radius: 3px;
  padding: 0.9em;
}

.feature-sub-list.hover-state .item:hover,
[data-highlight-item].active {
  background: #eaeaea;
}

.feature-sub-list .item {
  margin-bottom: 1.1em;
  border-bottom: 1px solid #ececec;
  padding-bottom: 0.9em;
}

.feature-sub-list .item-title {
  color: #515151;
  font-size: 22px;
  margin-bottom: 0.2em;
}

.feature-sub-list p {
  color: #7a7a7a;
  font-size: 18px;
}

/**
 * ----------------------------------------
 * Highlight images
 * ----------------------------------------
 *
 * Add a zoom effect to different parts of an image-block to highlight features.
 * Use with highlight-images.js
 *
 */

.highlight-images {
  position: relative;
}

.highlight-images .highlight-detail {
  background: #ececec;
  border: 4px solid #777;
  border-radius: 50%;
  box-shadow: 0px 4px 25px 0px rgba(44, 50, 60, 0.25);
  box-sizing: content-box;
  height: 300px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  transition: all .2s ease-in-out;
  transform: scale3d(.85,.85,.85);
  visibility: hidden;
  width: 300px;
  z-index: 99;
}

.highlight-images .highlight-detail.active {
  opacity: 1;
  transform: scale3d(1,1,1);
  visibility: visible;
}

.highlight-images .highlight-detail img {
  max-width: 100%;
}

.highlight-images .highlight-detail:after {
  content: '';
  display: block;
  border-radius: 50%;
  border: 6px solid rgba(0,0,0,.05);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}

@media (max-width: 767px) {
  .highlight-images .highlight-detail {
    top: -60px !important;
    left: 18px !important;
  }
}

/**
 * ----------------------------------------
 * Versus Blocks
 * ----------------------------------------
 *
 * A versus block is a (poorly named) section on the page that contains the following:
 *
 * - A title ("Fighter 1 vs Fighter 2")
 * - A grid of icons (with titles underneath) for each competitor
 * - A price point for each competitor
 */

.vs-block {
	position: relative;
	text-align: center;
}

.vs-symbol {
	background: #fff;
	border-radius: 50%;
	box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
	color: #ff8432;
	content: "vs";
	font-size: 33px;
	font-weight: 700;
	height: 62px;
	left: 50%;
	line-height: 1.85em;
	margin-left: -31px;
	margin-top: -31px;
	position: absolute;
	top: 50%;
	width: 62px;
}

.vs-title {
	position: relative;
}

.vs-title > .other-guys,
.vs-title > .lucky-orange {
	float: left;
	text-align: center;
	width: 50%;
}

.icon-grid {
	padding-left: 0;
	list-style: none;
}

.vs-price {
	font-size: 33px;
	line-height: 1;
	margin: 1em 0;
}

.vs-block .monthly-price {
	color: #111;
}

.vs-block .icon-grid {
	font-size: 48px;
}

.feature-name {
	display: block;
	font-size: 15px;
	font-weight: bold;
	margin-top:-10px;
	margin-bottom:20px;
	line-height: 1.833;
}

.feature-list.align-left li {
	text-align: left;
}

.feature-list.align-right li {
	text-align: right;
}

.feature-list.align-left .feature-name,
.feature-list.align-right .feature-name {
	display: inline;
}

.copyright{
	font-size: 14px;


}

.content-box {
  padding: 70px 0 0;
}

.gray-box,
.dark-gray-box,
.video-gray-box
{
	/*border-top: 1px solid #fff;*/
	background-color: #fafafa;
	border-bottom: 1px solid #eaeaea;

	padding-top:70px;
	padding-bottom:70px;

	text-shadow: 0px 1px 1px #fff;
	margin-bottom:75px;
	overflow:hidden;
}

.hide-x
{
	overflow-x:hidden;

}
.gray-box h2,
.dark-gray-box h2,
.video-gray-box h2 {
	margin-top: 0;
}

.video-gray-box
{
	background-color: rgb(241, 241, 241);
}


.dark-gray-box
{
	background-color: #eee;
	margin-bottom:0px;

}

.clear-box .row {
	padding: 1.5em 0;
}

.cta-quote {
	border-left: 0;
	text-align: center;
	quotes: "\201C" "\201D" "\2018" "\2019";
}

.cta-quote p:first-of-type::before {
	content: open-quote;
}

.cta-quote p:last-of-type::after {
	content: close-quote;
}

.cta-quote p,
.cta-quote footer {
	display: inline;
}

.main-footer {
	background-color: #3e2717;
	background-image: linear-gradient(#3a200d 0, #3e2717 30px);
	/*background-image: linear-gradient(#523B2A 0, #73492c 30px);*/
	/*background-image: url(../images/grass-bottom-2.png);
	background-repeat: repeat-x;
	background-position: 0 0;*/
	padding-top: 55px;
	/*margin-top: -52px;*/
	position: relative;
}

.main-footer::after {
	background: url(../images/grass-top.png) repeat-x 0 0;
	content: " ";
	position: absolute;
	top: -55px;
	left: 0;
	right: 0;
	width: 100%;
	height: 55px;
}

.main-footer a, .main-footer i {
	color: rgba(255,255,255,0.7);
	transition: .3s color ease;
}


.main-footer a:hover {
	color: white;
	border-bottom: 1px solid;
	text-decoration: none;

}
.main-footer .share-buttons a:hover{
	border-bottom:none;
top: -3px;
    position: relative;
}

.main-footer .tuxington {
	background: url(../images/tuxington-hatless.png) no-repeat 0 0;
	width: 293px;
	height: 276px;
	position: absolute;
	top: -276px;
	z-index: 9;
	right: 0;
	left: -103px;
	margin: 0 auto;
}

.badge-error {
  background-color: #b94a48;
}

.badge-warning {
  background-color: #f89406;
}

.badge-success {
  background-color: #66a242;
}


.reflect{
	-webkit-box-reflect: below 1px linear-gradient( to bottom, transparent 70%, rgba(255,255,255,0.35) 100% );

}
.main-footer li {
	font-size: 14px;
}

.main-footer .copyright {
	color: rgba(255,255,255,0.3);
	text-shadow: 0 -1px 0 rgba(0,0,0,0.1);
}

.cutout {
/*	background-color: rgba(0,0,0,0.2);
	padding: 30px;
	border-radius: 10px;
	box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.2), 0 1px 9px rgba(255,255,255,0.1);*/
	padding:30px;
}
.cutout strong{
	color: white;
	font-size:18px;
	text-shadow: 1px 1px 1px #000;

}
.cutout ul{
	margin-top:10px;
}

.cutout li{
	    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 5px;
    padding-top: 5px;

}

.cta-bottom.gray-box {
	margin-bottom: 0;
	border-bottom: 0;
	padding-bottom: 290px;
}

.box-heading {
	font-weight: 700;
	margin-bottom: 0.75em;
	line-height: 1;
	font-size: 48px;
	letter-spacing: -0.02em;
}

.grad-light
{
	background: rgb(255,255,255); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(255,255,255,1) 0%, rgba(234,234,234,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,1)), color-stop(100%,rgba(234,234,234,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(234,234,234,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(234,234,234,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(234,234,234,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(234,234,234,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#eaeaea',GradientType=0 ); /* IE6-9 */

}

.grad-dark
{
background: rgb(234,234,234); /* Old browsers */
background: -moz-linear-gradient(top,  rgba(234,234,234,1) 1%, rgba(255,255,255,1) 46%, rgba(255,255,255,1) 50%, rgba(255,255,255,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(1%,rgba(234,234,234,1)), color-stop(46%,rgba(255,255,255,1)), color-stop(50%,rgba(255,255,255,1)), color-stop(100%,rgba(255,255,255,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top,  rgba(234,234,234,1) 1%,rgba(255,255,255,1) 46%,rgba(255,255,255,1) 50%,rgba(255,255,255,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top,  rgba(234,234,234,1) 1%,rgba(255,255,255,1) 46%,rgba(255,255,255,1) 50%,rgba(255,255,255,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top,  rgba(234,234,234,1) 1%,rgba(255,255,255,1) 46%,rgba(255,255,255,1) 50%,rgba(255,255,255,1) 100%); /* IE10+ */
background: linear-gradient(to bottom,  rgba(234,234,234,1) 1%,rgba(255,255,255,1) 46%,rgba(255,255,255,1) 50%,rgba(255,255,255,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eaeaea', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */

}

.browser-wrap {
	border-radius: 7px;
	box-shadow: 0px 5px 50px rgba(0,0,0,0.15);
	display: block;
	float: right;
	padding-top: 40px;
	position: relative;
	margin-left: -120px;
	max-width: 720px;
}

.browser-fill,
.browser-cap {
	position: absolute;
	top: 0;
	height: 40px;
}

.browser-fill {
	background: url(../images/titlebar-fill.png) repeat-x 0 0;
	left: 145px;
	right: 38px;
}

.browser-cap-left {
	background: url(../images/titlebar-cap-left.png) no-repeat 0 0;
	left: 0;
	width: 145px;
}

.browser-cap-right {
	background: url(../images/titlebar-cap-right.png) no-repeat 0 0;
	right: 0;
	width: 38px;
}

.browser-content {
	width: 100%;
}

/* Reworked the display, so it doesn't look so strange on smaller devices.
 * It's still not perfect, but it looks a bit less "cartoon-y."
 */

.idisplay {
	position: relative;
	max-height: 862px;
}

.idisplay .enclosure {
	width: 100%;
	height: 100%;
	max-height: 623px;
	z-index: 2;
	position: relative;
}

.idisplay .screen {
	padding: 28px;
	background: #111;
	background-image: linear-gradient(
		230deg,
		rgba(255,255,255,0.05) 0,
		rgba(255,255,255,0.15) 50%,
		rgba(255,255,255,0) 50%,
		rgba(255,255,255,0) 100%
	);
	border-radius: 28px 28px 0 0;
	display: block;
	overflow: hidden;
	border: 2px solid #222;
}

/* Don't hate me. */
.idisplay .screen::after {
	content: "";
	width: 6px;
	height: 6px;
	position: absolute;
	background: radial-gradient(#555, #000 110%);
	border-radius: 3px;
	left: 50%;
	margin-left: -3px;
	top: 9px;
	box-shadow: inset 0px -1px 0px rgba(255,255,255,0.15);
}

.idisplay .screen-content {
	display: block;
	/*width: 100%;*/
	/*height: 100%;*/
	/*
	 * To get back old video sizing behavior, remove the following 3 lines,
	 * and uncomment width and height above.
	 */
	object-fit: fill;
	width: 100%;
	max-height: 330px;
}

.idisplay .base {
	display: block;
	background-color: #d0d1d4;
	background:
	  linear-gradient(
	    -230deg,
	    rgba(255,255,255,0) 0%,
	    rgba(255,255,255,0.5) 30%,
	    rgba(255,255,255,0) 100%
	  ),
	  linear-gradient(to bottom, #d0d1d4, #b3b4b8),
	  #d0d1d4;
	border-radius: 0 0 28px 28px;
	height: 50px;
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), inset 0 -1px 0 rgba(0,0,0,0.2);
}

.idisplay .base.alt {
	background:
	    linear-gradient(
	        -130deg,
	        rgba(255,255,255,0) 0%,
	        rgba(255,255,255,0.45) 17%,
	        rgba(255,255,255,0) 100% ),
	    linear-gradient(to left, #d0d1d4, #b3b4b8),
	    #d0d1d4;
}

.idisplay .stand {
	background: url(../images/display-base.png) center top no-repeat;
	background-size: contain;
	content: "";
	height: 100%;
	min-height: 171px;
	max-height: 241px;
	width: 100%;
	display: block;
	position: relative;
	z-index: 0;
}

.funnel-text
{
	max-width:630px;
	margin:auto;
}

.funnel-text.xlarge h1
{
	font-size:64px;
	text-rendering: optimizeLegibility;
}
.funnel-down
{
	font-size:100px;
	color:#eaeaea;
	margin-top:20px;
	margin-bottom:50px;

}

.gradient-gray-box {
	border-bottom: 0;
	background-image: -webkit-gradient(linear, 100% 0, 0 0, from(#eee), to(#fff));
	background-image: -webkit-linear-gradient(180deg, #eee, #fff);
	background-image: -moz-linear-gradient(180deg, #eee, #fff);
	background-image: -o-linear-gradient(180deg, #eee, #fff);
	background-image: linear-gradient(180deg, #eee, #fff);
}

.gradient-dark-gray-box {
	border-bottom: 0;
	background-image: -webkit-gradient(linear, 100% 0, 0 0, from(#ddd), to(#fff));
	background-image: -webkit-linear-gradient(180deg, #ddd, #fff);
	background-image: -moz-linear-gradient(180deg, #ddd, #fff);
	background-image: -o-linear-gradient(180deg, #ddd, #fff);
	background-image: linear-gradient(180deg, #ddd, #fff);
}

.gradient-gray-box.inverse,
.recordings .comparison-section {
	background-image: -webkit-gradient(linear, 100% 0, 0 0, from(#fff), to(#eee));
	background-image: -webkit-linear-gradient(180deg, #fff, #eee);
	background-image: -moz-linear-gradient(180deg, #fff, #eee);
	background-image: -o-linear-gradient(180deg, #fff, #eee);
	background-image: linear-gradient(180deg, #fff, #eee);
}


@media (max-width: 767px) {

	.idisplay .stand {
		min-height: 101px;
		max-height: 151px;
	}
}

.funnel-arrow{
	width: 0;
	height: 0;
	border-left: 20px solid transparent;
	border-right: 20px solid transparent;

	border-top: 20px solid #f00;
}
.funnel-container {
	/*background-color:#333; #5DB45E;*/
	background: url(../images/triangle-2.png) no-repeat top center, -webkit-linear-gradient(0deg, rgb(223, 0, 0), yellow, #5FB761);
	background: url(../images/triangle-2.png) no-repeat top center, linear-gradient(0deg, rgb(223, 0, 0), yellow, #5FB761);
	background-size: 100% 100%;
}

.funnel-container.blue {
	background: url(../images/triangle-2.png) no-repeat top center, -webkit-linear-gradient(0deg, rgb(200, 79, 241), #2BAEF4);
	background: url(../images/triangle-2.png) no-repeat top center, linear-gradient(0deg, rgb(200, 79, 241), #2BAEF4);
	background-size: 100% 100%;
}

.funnel-down {
	background-size: contain;
	background-repeat: no-repeat;
	background-position: 0 0;
	margin: 20px auto 30px;
	width: 64px;
	height: 64px;
	text-indent: -9999em;
}

.funnel-down-1 {
	background-image: url(../images/funnel-1.png);
}

.funnel-down-2 {
	background-image: url(../images/funnel-2.png);
}

.funnel-down-3 {
	background-image: url(../images/funnel-3.png);
}

@-webkit-keyframes twoToneText {
	33.33% { color: #2BAEF4; }
	66.66% { color: rgb(200, 79, 241); }
}

@keyframes twoToneText {
	33.33% { color: #2BAEF4; }
	66.66% { color: rgb(200, 79, 241); }
}

@-webkit-keyframes spinY {
	0% {
		-webkit-transform: rotateY(0deg) translateZ(0);
		transform: rotateY(0deg) translateZ(0);
	}
	100% {
		-webkit-transform: rotateY(1080deg) translateZ(50px);
		transform: rotateY(1080deg) translateZ(50px);
	}
}

@keyframes spinY {
	0% { transform: rotateY(0deg) translateZ(0); }
	100% { transform: rotateY(1080deg) translateZ(50px); }
}

#conversion-funnels .box-heading {
	color: #333;
}

#conversion-funnels:target .box-heading {
	-webkit-animation: twoToneText 3s 0.1s 1 ease;
	-moz-animation: twoToneText 3s 0.1s 1 ease;
	-ms-animation: twoToneText 3s 0.1s 1 ease;
	-o-animation: twoToneText 3s 0.1s 1 ease;
	animation: twoToneText 3s 0.1s 1 ease;
}

#conversion-funnels .funnel-icon {
	position: relative;
}

#conversion-funnels:target .funnel-icon {
	-webkit-animation: spinY 3s 0.1s 1 ease;
	-moz-animation: spinY 3s 0.1s 1 ease;
	-ms-animation: spinY 3s 0.1s 1 ease;
	-o-animation: spinY 3s 0.1s 1 ease;
	animation: spinY 3s 0.1s 1 ease;
}

.recordings .header,
.conversion-funnels .header {
	position: relative;
	overflow: hidden;
}

#header-video {
	margin-top: 50px;
	width: 100%;
	/*max-height: 500px;*/
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

#header-video-relative {
	width: 100%;
	/*max-height: 500px;*/
	position: relative;
}

#header-video-overlay {
	background-color: #808080;
	background-color: rgba(0,0,0,0.5);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.video-caption-box {
	background: rgb(20, 20, 20);
	background: rgba(0, 0, 0, 0.8);
	padding: 15px 20px;
	display: block;
	position: absolute;
	width: 100%;
	bottom: 0;
	border-top:1px solid #333;
}

.video-caption-box-relative {
	display: block;
	width: 100%;
	margin-bottom: 30px;
    margin-top: 75px;
}

.video-caption {
	text-align: center;
	color: #fff;
	text-shadow: 0px 1px 3px #000;
	font-weight: 700;
	font-size:26px;
}

.video-caption-box-relative .video-caption {
	text-align: center;
	color: #676767;
	text-shadow:0px 1px 1px #fff;
	font-size:26px;
    font-weight:100;
}

.boxed.video-caption {
	background: rgb(20, 20, 20);
	background: rgba(0, 0, 0, 0.8);
	padding: 15px 20px;
	display: block;
	position: absolute;
	width: 100%;
	bottom: 0;
	border-radius: 5px;
}

.video-gray-box {
	margin-bottom: 0;
}

#video-top {
	width: 100%;
	position: absolute;
	top: 50px;
	left: 0;
	right: 0;
	bottom: 0;
}

#video-top-overlay {
	background-color: rgba(0,0,0,0.7);
	background-color: rgba(0,0,0,0.7);
	/*background-image: url("/images/bg-interlaced.gif");*/
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

@media (max-width: 1063px) {
	.funnel-container,
	.funnel-container.blue {
		background: none;
	}
}

/* -----------------------------------------------------------------------------
 * Chat Landing Page
 * -----------------------------------------------------------------------------
 */

.chat .header .heading-group {
	margin-top: 2em;
}

.chat section[role="main"] > :first-child {
	margin-top: 50px;
}

.chat .icon-block-group {
	padding: 0;
	margin: 0 0 3em;
}

.chat .header .heading-group .subheading {
	margin: -10px 0 0;
}

.chat .header .heading-group p {
	font-size: 24px;
	text-align: center;
	/*text-shadow: 0px 1px 3px rgba(0,0,0,0.5);*/
	color: #fff;
	margin-top: 0.75em;
}

.chat .header {
	background: url(../images/headers/chat.jpg) no-repeat 50%;
	background-size: cover;
	min-height: 600px;
}

.chat .header .heading-group {
	margin-top: 6em;
	margin-bottom: 1em;
}

.chat .header .heading-group p {
	font-size: 52px;
  	line-height: 1.7;
	letter-spacing: -0.02em;
	margin-top: 0;
}

.chat .header .price {
	/*color: rgb(255, 179, 61) !important;*/
	font-weight: 700;
}

.price small{
	font-size:14px;
}
.chat .header .form-cta {
	margin-bottom: 2em;
}

@media (max-width: 767px) {

	.navbar-collapse .navbar-nav > li {
		font-size: 14px;
	}

	.chat .header .container {
		padding-top: 50px; /* Nav bar height */
	}

	.chat .header .heading-group {
		font-size: 48px;
		line-height: 1;
		margin: 1em 0;
	}

	.chat .header .heading-group .heading,
	.chat .header .heading-group .subheading,
	.chat .header .heading-group .leader,
	.chat .header .heading-group p {
		line-height: inherit;
		margin: 0;
		padding: 0;
	}

	.chat .header .heading-group .heading {
		font-size: 48px;
		margin-bottom: 0.5em;
	}

	.chat .header .heading-group .subheading,
	.chat .header .heading-group .leader {
		font-size: 32px;
		text-shadow: 0 1px 0 #000;
		margin-bottom: 1em;
	}
}

/**
 * ----------------------------------------------------------------------------
 * Heat Maps
 * ----------------------------------------------------------------------------
 */

.heat-maps .header {
	background: linear-gradient(to left top, #24C6DC, #514A9D);
	background-size: cover;
	overflow: hidden;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* Make sure people don't want to select text while heatmappin' it up. */
.heat-maps .header .heading-group {
	/*cursor: default;*/
}

#heatmap-container-wrap {
	position: relative;
}

#heatmap-container {
	width: 100%;
	height: 500px;
	position: absolute !important;
	z-index: 0;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.item-toggles {
  font-size: 14px;
  list-style: none;
}

.item-toggles li {
  cursor: default;
  padding: 5px 8px;
}

.item-toggles li.active {
  background: #eee;
  border-radius: 3px;
}

.web-browser-container {
  background: #D3DCE0;
  border-radius: 5px;
  box-shadow: 0px 4px 25px 0px rgba(44, 50, 60, 0.25);
  padding: 30px 1px 0px;
  width: 100%;
}

.web-browser-container .image-container {
  position: relative;
}

.gif-player {
  cursor: default !important;
}

/*
 * Big Stacked 3D Screenshots
 *
 * Unscaled Image Size: 500 x 680 px
 * Scaled Image Size: 250 x 340 px (scale(0.5))
 */

.img-stack {
	margin-top: 1.5em;
	min-height: 340px;
	overflow: visible;
	position: relative;
	-webkit-perspective: 1000;
	-moz-perspective: 1000;
	-ms-perspective: 1000;
	-o-perspective: 1000;
	perspective: 1000;
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	-ms-transform-style: preserve-3d;
	-o-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

.img-stack img {
	position: absolute;
	-webkit-transform: rotateY(-30deg) scale(0.5);
	-moz-transform: rotateY(-30deg) scale(0.5);
	-ms-transform: rotateY(-30deg) scale(0.5);
	-o-transform: rotateY(-30deg) scale(0.5);
	transform: rotateY(-30deg) scale(0.5);
	/*transition: transform 0.5s ease-in-out;*/
}

/* Optical Illusion if you rotate this puppy on its Y axis. */
.img-stack.awesome img {
	height: 339.5px;
	width: 250px;
	position: absolute;
	-webkit-transform: rotateY(-30deg);
	-moz-transform: rotateY(-30deg);
	-ms-transform: rotateY(-30deg);
	-o-transform: rotateY(-30deg);
	transform: rotateY(-30deg);
}

/*#stacked-clicks,*/
.img-stack .img-front {
	left: 50%;
	margin-left: -250px;
	top: 0;
	-webkit-transform-origin: top left;
	-moz-transform-origin: top left;
	-ms-transform-origin: top left;
	-o-transform-origin: top left;
	transform-origin: top left;
	z-index: 2;
}

/*#stacked-moves,*/
.img-stack .img-middle {
    left: 50%;
    margin-left: -250px;
    top: 0;
    -webkit-transform-origin: top center;
	-moz-transform-origin: top center;
	-ms-transform-origin: top center;
	-o-transform-origin: top center;
	transform-origin: top center;
    z-index: 1;
}

/*#stacked-scrolls,*/
.img-stack .img-back {
    margin-right: -250px;
    right: 50%;
    top: 0;
    -webkit-transform-origin: top right;
	-moz-transform-origin: top right;
	-ms-transform-origin: top right;
	-o-transform-origin: top right;
	transform-origin: top right;
    z-index: 0;
}

@-webkit-keyframes front-to-back {
	50% {
		transform: rotateY(0deg) scale(0.5) translate3d(500px, 0, 125px);
	}
	100% {
		transform-origin: top right;
	}
}

@-webkit-keyframes middle-to-front {
	50% {
		transform: rotateY(-15deg) scale(0.5) translate3d(-500px, 0, -75px);
	}
	100% {
		transform-origin: top left;
	}
}

@-webkit-keyframes back-to-middle {
	50% {
		transform: rotateY(-45deg) scale(0.5) translate3d(-500px, 0, 0px);
	}
	100% {
		transform-origin: top center;
	}
}

.swap .f2b,
.swap img:last-of-type {
	-webkit-animation: front-to-back 2s 1 forwards ease-in-out;
	animation: front-to-back 2s 1 forwards ease-in-out;
}

.swap .m2f,
.swap img:nth-of-type(2) {
	-webkit-animation: middle-to-front 2s 1 forwards ease-in-out;
	animation: middle-to-front 2s 1 forwards ease-in-out;
}

.swap .b2m,
.swap img:first-of-type {
	-webkit-animation: back-to-middle 2s 1 forwards ease-in-out;
	animation: back-to-middle 2s 1 forwards ease-in-out;
}

.sloppy #stacked-clicks {
	transform: translate3d(0, 0, 0) scale(0.75) rotateY(-15deg) rotateZ(15deg) skewY(-10deg);
}

.sloppy #stacked-moves {
	transform: translate3d(100px, 0, 0) scale(0.75) rotateY(-15deg) rotateZ(-15deg) skewY(-10deg);
}

.sloppy #stacked-scrolls {
	transform: translate3d(200px, 0, 0) scale(0.75) rotateY(-15deg) rotateZ(15deg) skewY(-10deg);
}

.img-stack-wrap {
	-webkit-perspective: 1000;
	-moz-perspective: 1000;
	-ms-perspective: 1000;
	-o-perspective: 1000;
	perspective: 1000;
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	-ms-transform-style: preserve-3d;
	-o-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

.img-stack-reflecting {
	/* Debug layout: */
	/* background-color: darkgrey; */
	margin-bottom: 6em;
	min-height: 250px;
	perspective-origin: left bottom;
	top: 3em;
	transform: rotateY(-30deg) translate3d(0, 0, 106px);
	-webkit-box-reflect: below 0px linear-gradient(to bottom, transparent 70%, rgba(255,255,255,0.35) 100%);
}

/* This centers every image in the box. It's like a reset of sorts. */
.img-stack-reflecting > img {
	bottom: 0;
	height: 240px;
	left: 50%;
	margin-left: -125px;
	width: 250px;
	/*box-shadow: 10px 5px 20px -5px rgba(0,0,0,0.75);*/
	/*box-shadow: 21px 9px 1px -8px rgba(0,0,0,0.35);*/
	box-shadow: 14px 9px 2px -8px rgba(0,0,0,0.15), 12px 7px 1px -9px rgba(0,0,0,0.35);
/*	border: 1px solid rgb(29,29,29);*/
	/*border: 1px solid rgba(255,255,255,0.5);*/

}

.img-stack-reflecting > img:first-child {
	box-shadow: none;
}

.img-stack-reflecting #stacked-scrolls {
	transform: translate3d(150px, 0, 0) rotateY(-30deg);
}

.img-stack-reflecting #stacked-moves {
	transform: translate3d(0, 0, 0) rotateY(-30deg);
}

.img-stack-reflecting #stacked-clicks {
	transform: translate3d(-150px, 0, 0) rotateY(-30deg);
}

/* -----------------------------------------------------------------------------
 * Form Analytics
 * -----------------------------------------------------------------------------
 */

.form-analytics .header {
	background: url(../images/headers/form-analytics-sm.jpg) center;
	background-size: cover;
}

.labeled-icon {
	color: dimgray;
	font-size: 92px;
	line-height: 1;
	text-align: center;
	margin-top: 20px;
}

.labeled-icon .glyphicon {
	text-align: inherit;
	text-shadow: none;
}

.labeled-icon .icon-label {
	display: block;
	text-align: inherit;
	font-size: 18px;
	font-weight: 400;
	color: #777;
}

:nth-of-type(1) .labeled-icon {
	color: mediumorchid;
}

:nth-of-type(2) .labeled-icon {
	color: limegreen;
}

:nth-of-type(3) .labeled-icon {
	color: dodgerblue;
}

:nth-of-type(4) .labeled-icon {
	color: crimson;
}

:nth-of-type(5) .labeled-icon {
	color: darkorange;
}

.dark-gray-box h2:first-of-type {
	margin-top: 0;
}

/* -----------------------------------------------------------------------------
 * Dashboard
 * -----------------------------------------------------------------------------
 */

.dashboard .header {
	background: url(../images/headers/dashboard.png);
	background-position: 0 100%;
	background-repeat: repeat-x;
	/*min-height: 504px;*/
	min-height: 727px;
}

.dashboard .heading-group .heading {
	color: #525252;
	text-shadow: none;
}

.were_not{
	color: #6091FF;
}
.dashboard .heading-group .subheading {
	color: #999;
	/*color: #aaa;*/
	text-shadow: none;
	margin: 0;
}

.dashboard .callout-box {
	background-color: #4b68ab;
	color: #fff;
}

.dashboard .callout-box h2 {
	color: #fff;
	font-weight: 700;
	margin-bottom: 90px;
	font-size: 64px;
	margin-top: 0;
}

.input-group-wrapper {
	padding: 10px;
	background-color: #eee;
	border-radius: 12px;
}

.sub-subheading {
	color: #777;
	font-weight: 300;
	margin-bottom: -40px;
	margin-top: 40px;
	text-align: center;
}

.map_point {
	background: orange;
	width: 16px;
	height: 16px;
	display: block;
	position: absolute;
	border-radius: 8px;
	border: 2px solid #fff;
	box-shadow: 0px 2px 4px rgba(0,0,0,0.35);
}

/* -----------------------------------------------------------------------------
 * Conversion Funnels
 * -----------------------------------------------------------------------------
 */

.conversion-funnels .header {
	background: url(../images/headers/conversion-funnels-sm.jpg) no-repeat 50%;
	background-size: cover;
}

/* -----------------------------------------------------------------------------
 * Pricing
 * -----------------------------------------------------------------------------
 */

.semi.fluid-container {
	max-width: 1680px;
	margin: 0 auto;
	padding: 0 30px;
}

.pricing section[role="main"] {
	background-color: #2dc8ff;
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0084B2), to(#2dc8ff));
	background-image: -webkit-linear-gradient(to top, #0084B2, #2dc8ff);
	background-image: -moz-linear-gradient(to top, #0084B2, #2dc8ff);
	background-image: -o-linear-gradient(to top, #0084B2, #2dc8ff);
	background-image: linear-gradient(to top, #0084B2, #2dc8ff);
}

.pricing .superlative {
	background: url(../images/nav-logo-4.png) no-repeat 0 0;
	background-size: 16px 16px;
	padding-left: 21px;
	min-height: 16px;
}

.pricing .heading-group {
	color: #fff;
	text-shadow: 0px -1px 0px rgba(0,0,0,0.3);
}

.pricing .heading-group .heading {
	font-size: 66px;
	/*font-weight: 300;*/
	color: inherit;
	/*text-shadow: inherit;*/
	text-shadow: 0 1.5px 2px rgba(0, 0, 0, 0.25);
}

.pricing .heading-group .subheading {
	font-size: 32px;
	font-weight: 700;
	color: inherit;
	text-shadow: inherit;
}

@media (max-width: 1125px) {
	.pricing .heading-group .heading {
		font-size: 62px;
	}
	.pricing .heading-group .subheading {
		font-size: 28px;
	}
}

@media (max-width: 983px) {
	.pricing .heading-group .heading {
		font-size: 52px;
	}
	.pricing .heading-group .subheading {
		font-size: 24px;
	}
}

@media (max-width: 840px) {
	.pricing .heading-group .heading {
		font-size: 48px;
	}
	.pricing .heading-group .subheading {
		font-size: 22px;
	}
}

@media (max-width: 783px) {
	.pricing .heading-group .heading {
		font-size: 42px;
	}
	.pricing .heading-group .subheading {
		font-size: 22px;
	}
}

.pricing .header {
	min-height: 0;
}

/* Default */
.btn-group-glowing .btn-default {
	background: transparent linear-gradient(rgba(255,255,255,0.3), transparent);
	background-clip: padding-box;
	/*border: 1px solid #fff;*/
	/*border: 1px solid rgba(255, 255, 255, 0.3);*/
	/*border-top-color: #fff;*/
	/*border-top-color: rgba(255, 255, 255, 0.5);*/
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.3), inset 0 -1px 0 rgba(255, 255, 255, 0.15);
	color: #fff;
	text-shadow: none;
	font-weight: 700;
	border: 0;
}

/*.btn-group-glowing .btn + .btn,
.btn-group-glowing .btn + .btn-group,
.btn-group-glowing .btn-group + .btn,
.btn-group-glowing .btn-group + .btn-group {
	margin-left: 0;
}*/

/* Hover & Focus */
.btn-group-glowing .btn-default:hover,
.btn-group-glowing .btn-default:focus,
.btn-group-glowing .btn-default.hover,
.btn-group-glowing .btn-default.focus {
	background: transparent linear-gradient(rgba(255,255,255,0.6), rgba(255,255,255,0.3));
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.5), inset 0 -1px 0 rgba(255, 255, 255, 0.3);
	color: #fff;
	outline: 0;
}

/* Pressed */
.btn-group-glowing .btn-default:active {
	background: transparent linear-gradient(to top, rgba(255,255,255,0.6), rgba(255,255,255,0.3));
}

/* Selected/Active/Current */
.btn-group-glowing .btn-default.active {
	background: #fff;
	border-color: #fff;
	box-shadow: none;
	color: #1fb4e8;
}

.btn-group-glowing .btn-default.glowing {
	box-shadow: 0px 0px 40px rgba(255,255,255,0.3);
}

.btn-group-glowing .btn-default:first-of-type {
	border-left: 1px solid #fff;
	border-left: 1px solid rgba(255,255,255,0.3);
}

.btn-group-glowing .btn-default:last-of-type {
	border-right: 1px solid #fff;
	border-right: 1px solid rgba(255,255,255,0.3);
}

.btn-group-glowing .btn-default small {
	font-weight: 400;
}

.btn-group-glowing .btn-default:nth-child(2) {
	border-left: 1px solid rgba(255,255,255,0.15);
	border-right: 1px solid rgba(255,255,255,0.15);
}

.btn-group-glowing .btn-default.active + .btn-default {
	border-left-color: #fff;
}

.pricing .comparison-section {
	background-color: #fff;
}

.pricing .shared-pageviews {
	color: #808080;
	color: rgba(0,0,0,0.5);
}

#switch {
	color: #fff;
	text-shadow: none;
}

#switch h2 {
	display: inline-block;
	color: #fff;
	text-shadow: none;
	font-weight: 700;
	margin-bottom: 0;
}

#switch p {
	color: #bce6ff;
	font-size: 24px;
}

@media (min-width: 992px) {
	.col-md-1-7 {
		width: 14.285714286%;
	}
}

.benicon-funnel {
	background: url(../images/icons/conversion-funnels.svg);
	height: 64px;
	width: 64px;
}

.gray-box + .padded-box.pad-top:not(.main-footer),
.gray-box + .padded-box.pad-y:not(.main-footer) {
	padding-top: 0;
}

.lucky-list {
	list-style-image: url(../images/orange-bullet.png);
}

.quote {
	position: relative;
}

.quotee {
	color: #fff;
	font-size: 18px;
	letter-spacing: 0;
	display: block;
	text-align: center;
}

/* ----------------------------------------------------------------------------
 * Polls
 * ----------------------------------------------------------------------------
 */

.polls .header {
	background: #a4cce8 url(../images/headers/polls-sm.jpg) no-repeat center bottom;
	background-size: cover;
}

.blue-gradient-box {
	background: linear-gradient(#4c8dcf, #215cb3) center top repeat-x;
	width: 100%;
	color: #fff;
	border-top: 3px solid #b3cfec;
}

.blue-gradient-box h2,
.blue-gradient-box h3 {
	color: #fff;
	text-shadow: none;
	font-weight: 700;
}

/* ----------------------------------------------------------------------------
 * Signup/Login
 * ----------------------------------------------------------------------------
 */

/* body.signup, body.login */
.form-page {
	background-color: #000;
	background-image: url(../images/signup-bg-2.jpg);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
	color: #333;
	text-shadow: none;
	min-height: 100%;
}

.form-page .modal {
	color: #333;
}


html, .form-page {
	height: 100%;
	position: relative;
}

.form-page .header {
	background: transparent;
	min-height: 0;
}

.form-page .h1 {
	font-weight: 700;
	font-size: 24px;
	margin: 0 0 1em 10px;
	text-rendering: optimizeLegibility;
}

.form-page .h1 img {
	vertical-align: bottom;
}

.form-page .page-wrap {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.form-page .main-form {
	background-color: #f8f8f8;
	background-image: -webkit-gradient(linear, 0 100%, 0 0, from(#fff), to(#ccc));
	background-image: -webkit-linear-gradient(#fff, #ccc);
	background-image: -moz-linear-gradient(#fff, #ccc);
	background-image: -o-linear-gradient(#fff, #ccc);
	background-image: linear-gradient(#fff, #ccc);
	background-repeat: repeat-x;
	border-radius: 3px 3px 0 0;
	bottom: -100px;
	box-shadow: 0 3px 30px rgba(0,0,0,0.3);
	color: #333;
	position: relative;
	text-shadow: 0 1px 0 #fff;
	-webkit-box-reflect: below 2px linear-gradient(
		to bottom,
		transparent 70%,
		rgba(255,255,255,0.35) 100%
	);
}

.form-page .glossy {
	background: url(../images/gloss.png) no-repeat 0 0, linear-gradient(to bottom, #fff, #ccc);
	background-size: cover;
}

.quote-source {
	display: block;
	font-size: 14px;
	color: #808080;
	margin-top: 8px;
}

@media (max-width: 768px) {
	.form-page form p {
		font-size: 15px;
		font-weight: 700;
	}
	.quote-source {
		font-weight: 400;
	}
	.help-block a {
		white-space: nowrap;
	}
}

.reflective-box {
	min-height: 100%;
	overflow: visible;
}

.form-page .main-form p:first-of-type {
	color: #555;
	text-shadow: 0 1px 0px rgba(255,255,255,0.8);
}

@media (min-width: 768px) {
	.main-form .form-group-lg .control-label {
		padding-top: 11px; /* Input border-top-width + input padding-top */
	}
}

.form-page form p {
	font-weight: 400;
	text-rendering: optimizeLegibility;
}

.form-page a {
	color: #888;
	font-weight: 700;
}

.form-page label {
	text-shadow: 0 1px 0 rgba(255,255,255,0.5);
}

.form-page input {
	color: #333;
}

.form-page .btn {
	font-weight: 700;
}

.form-page form .btn {
	margin-bottom: 20px;
}

.form-page .or-text {
	display: block;
	font-size: 16px;
}

.form-page .bottom-text {
	font-size: 14px;
	text-align: center;
}

.help-block {
	font-size: 16px;
}

.help-block.text-left {
	margin-left: 6px;
}

.help-block.text-right {
	margin-right: 6px;
}

.help-block .glyphicon {
	position: relative;
	top: 2px;
	margin-right: 2px;
}

.help-block:last-child {
	margin-bottom: 20px;
}

.half_logo {
	margin-bottom: 30px;
}

.inset-rule {
	border-bottom: 1px solid rgba(255,255,255,0.8);
	border-top: 1px solid rgba(0, 0, 0, 0.3);
	padding: 0;
	height: 0;
	margin: 10px 0;
}

.login .inset-rule {
	border-bottom: 1px solid #fff;
	border-top: 1px solid #eee;
	border-top: 1px solid rgba(0, 0, 0, 0.2);
	margin: 10px 0 40px;
}

.password-reset-link {
	font-size: 14px;
}

.form-page .main-form .form-group-last,
.form-page .main-form .form-group-last .btn {
	margin-bottom: 0;
}

.form-page .main-form .form-group-last {
	margin-top: 40px;
}

.form-page .main-form .checkbox + .form-group-last {
	margin-top: 20px;
}

.form-page .main-form .form-group-last::before,
.form-page .main-form .form-group-last::after {
	display: table;
	content: " ";
}

.form-page .main-form .form-group-last::after {
	clear: both;
}

.login .checkbox {
	font-size: 16px;
	margin: 0;
}

.noshadow {
	text-shadow: none;
}

.form-page .or-text {
	position: absolute;
    top: -24px;
    right: 10px;
    color: #fff;
    text-shadow: none;
    font-size: 14px;
    font-weight: bold;
}

.form-page .or-text a {
	color: #ffa42c;
}

.greeting,
.tip,
.login-tip {
	font-size: 16px;
}

.tip .tip-no,
.login-tip .tip-no {
	color: #999;
	font-weight: 700;
}

.login-tip a {
	color: darkorange;
}

.form-page .form-logo img {
	padding: 50px 0 30px;
}


/* ----------------------------------------------------------------------------
 * Home
 * ----------------------------------------------------------------------------
 */

/*
 * More Blue: #dff0ff
 * Less Blue: #f3f5f8
 * Darker Orange: #ff982c
 */
.home .header {
	min-height: 1px;
}

.home .orange-box {
	/* This is affecting the mirror */
/*	overflow: visible;
	overflow-y: visible;
	overflow-x: hidden;*/
	overflow: visible;
}

.drip-drop {
	position: absolute;
	right: 50px;
	z-index: -1;
}

.drip-drop img {
	text-align: right;
}

.brand {
	font-size: 30px;
	text-align: center;
	margin-top: 80px;
	margin-bottom: 0;
}

.home .brand {
	/* made an image so it would be responsive on phones */
	display: block;
	margin: 80px auto 20px;
	max-width: 425px;
}
.home .brand img {
	margin:auto;
}

.in-the-news-item
{
	font-size:15px;
	margin-bottom:30px;
	padding-left:20px;
	border-left:2px solid #ccc;
}

.container-sm
{
	max-width:680px;
	min-height:500px;
}
.home .header .heading {
	text-align: center;
	font-size: 36px;
	line-height: 1.375; /* 66px */
	margin: 1.375em auto; /* 66px top/bottom */
	letter-spacing: -0.0167em;
}

.home .header .heading span,
.home .orange-box .heading span {
	color: #fff;
	display: block;
	/*font-weight: 700 !important;*/
	text-align: center;
}

.home .header .heading span:last-of-type,
.home .orange-box .heading span:last-of-type {
	margin-bottom: 20px;
	font-size: 48px;
}

.home .header .heading em,
.home .orange-box .heading em {
	/*color: #ffdc45;*/
	color: #ADFF1B;
	font-style: normal;
}

#conversion-word {
	color: #43BD00;
	text-shadow: 0px 1px 1px #fff !important;
}


.featured-in
{
	/*border-top:1px solid #eaeaea;*/
	/*border-bottom:1px solid #eaeaea;*/
	padding-top:20px;
	padding-bottom:20px;
}
.orange-box {
	/*background: url(../images/huge-orange-clover-2.jpg) no-repeat center top;*/
	/*background: url(../images/orange-hills.jpg) no-repeat center 49px;*/
	background: url(../images/orange-hills-2.jpg) no-repeat center 49px;
	background-size: cover;
	-webkit-box-reflect: below 0px linear-gradient(
		to bottom,
		transparent 78%,
		rgba(255,255,255,0.35) 100%
	);
}
@media (max-width: 767px) {
	.orange-box {
		background-color: #ff8420;
		background-image: -moz-linear-gradient(#ffb03b, #ff8420);
		background-image: -ms-linear-gradient(#ffb03b, #ff8420);
		background-image: -o-linear-gradient(#ffb03b, #ff8420);
		background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffb03b), to(#ff8420));
		background-image: -webkit-linear-gradient(#ffb03b, #ff8420);
		background-image: linear-gradient(#ffb03b, #ff8420);
	}
	#conversion-word{
		display: block;
	    position: relative;
	    overflow: hidden;
	    height: 41px;
	    top: 11px;
	    text-align: center !important;
	    margin-bottom: 15px;
	    color: yellow;
	    text-shadow: none !important;
	}
}
.orange-box .heading {
	/*margin: 200px auto 70px;*/
	/*margin: 110px auto 206px;*/
	margin: 0 auto 206px;
	letter-spacing: -0.03em;
	/*text-shadow: 0 1px 2px rgba(175, 82, 7, 0.75);*/
	text-shadow: 0 0px 60px rgba(1, 93, 171, 0.6), 0 1px 3px rgba(1, 93, 171, 0.6);
}
@media (max-width: 767px) {
.orange-box .heading {
		text-shadow: 0 1px 3px rgba(1, 93, 171, 0.6);
	}
}
.orange-box .iframe-box {
	padding-bottom: 54%;
	border: 14px solid #fff;
	border-bottom: 0;
	/*box-shadow: 0 5px 30px rgba(175, 82, 7, 0.75);*/
	box-shadow: 0 -8px 30px -10px rgba(175, 82, 7, 0.75);
	/*transform: translateY(10px);*/
	/*transition: transform 0.2s ease-in;*/


}

/*.orange-box .iframe-box:focus,*/
/*.orange-box .iframe-box:hover {*/
/*	transform: translateY(0);*/
/*}*/

.tuxington {
	background: url(../images/orange-tuxington.png) no-repeat 0 0;
	display: block;
	width: 212px;
	height: 282px;
}

.orange-box .tuxington {
	position: absolute;
	z-index: 0;
	right: -180px;
	bottom: 0;
}

.orange-box .tuxington.pimpington {
	background: url(../images/pimpington.png) no-repeat 0 0;
}

.home .feature-hero > .img-responsive {
	margin: 0 auto;
}

.home .feature-details h2 {
	margin-top: 0;
	line-height: 1;
}

.feature-details h2 > img {
	vertical-align: top;
	margin-right: -10px;
	margin-left: -10px;
	width: 64px;
	height: 64px;
}

.feature-details h2 .glyphicon {
	/*vertical-align: middle;*/
	font-size: 36px;
}

.home .feature-details a:hover {
	border-bottom: 1px solid;
	text-decoration: none;
}

.video-heading {
	color: #fff;
	font-weight: 700;
	font-size: 64px;
	line-height: 1.03125;
	margin-bottom: 1.03125em;
	text-align: center;
	text-shadow: 0 1px 3px rgba(0,0,0,0.35);
}

#feature-recordings .idisplay .screen-content {
	display: block;
	object-fit: fill;
	width: 100%;
	max-height: 330px;
}

.color-dashboard {
	color: #6091ff;
}

.color-recordings {
	color: #cc234c;
}

.color-conversion-funnels {
	color: #c84ff1;
}

.color-chat {
	color: #18cadc;
}

.color-heat-maps {
	color: #fc560a;
}

.color-polls {
	color: #96e253;
}

.color-form-analytics {
	color: orange;
}

.far-out-man {
	background-image: radial-gradient(ellipse farthest-corner at 50px 50px, #00FFFF 0%, #f89e10 50%, #0000FF 95%);
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-size: cover;
}

.nav-only .header {
	min-height: 1px;
}

@media (max-width: 767px) {
	.home .header .heading {
		font-size: 32px;
	}
	/*.home .header .heading span:first-of-type {*/
	/*	font-size: 50%;*/
	/*}*/

	/*.home .header .heading span:last-of-type {*/
	/*	font-size: 75%;*/
	/*}*/
}

.modal-body p
{
	font-size:16px;
}
.terms
{
		text-align: justify;
	font-size:16px;
	max-width: 680px;
}
.terms p
{
	text-align: justify;
	font-size:16px;
}

/* Sharing Buttons from simplesharingbuttons.com */
ul.share-buttons{
  list-style: none;
  padding: 0;
  margin-top:50px;
}

ul.share-buttons li{
  display: inline;
}

/*
 Google Conversion Frame adds height without this
*/
iframe[name='google_conversion_frame'] {
    height: 0 !important;
    width: 0 !important;
    line-height: 0 !important;
    font-size: 0 !important;
    margin-top: -13px;
    float: left;
}
