@charset "UTF-8";

/* ! Reset defaults & page base */

html, body {
	margin: 0;
	padding: 0;
	font-family: "Gotham Book";
	font-size: 15px;
	line-height: 23px;
	color: #797b7b;
}

p, a, h1, h2, h3, h4, h5, h6, hr, ul, ul li, ol, ol li, table, td, tr, th, form, input, select {
	margin: 0;
	padding: 0;
	border: 0;
	outline: none;
	list-style-type: none;
}

p, label, h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
	color: #404343;
	text-rendering: optimizelegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1 {
	font-family: "Gotham Bold";
	font-size: 48px;
	text-align: center;
	letter-spacing: -1px;
}

h2 {
	margin-bottom: 25px;
	font-family: "Gotham Narrow Book";
	font-size: 37px;
	line-height: 44px;
	letter-spacing: -1px;
}

h3 {
	margin-bottom: 10px;
	font-family: "Gotham Medium";
	font-size: 18px;
	text-transform: uppercase;
}

h4 {
	font-family: "Gotham Bold";
	font-size: 24px;
	text-transform: uppercase;
}

p, blockquote {
	margin-bottom: 23px;
	color: #797b7b;
}

p.lead {
	font-size: 17px;
	line-height: 30px;
}

p.pre {
	margin-bottom: 16px;
	font-family: "Gotham Medium";
	font-size: 15px;
	letter-spacing: 3px;
	text-transform: uppercase;
}

p.pre.pink { color: #f6586a; }
p.pre.cyan { color: #44bfb6; }

strong {
	font-family: "Gotham Bold";
	font-weight: normal;
}

em {
	font-family: "Gotham Book Italic";
	font-style: normal;
}

a {
	text-decoration: none;
	color: #f6586a;
	-webkit-transition: color 0.2s ease-out;
	   -moz-transition: color 0.2s ease-out;
	    -ms-transition: color 0.2s ease-out;
	        transition: color 0.2s ease-out;
}

a:hover { text-decoration: underline; }

.column {
	float: left;
	width: 50%;
}

@media screen and (max-width: 768px) {
	.column {
		float: none;
		width: 100%;
	}
}

.columns-2,
.columns-3,
.columns-4 {
	-webkit-hyphens: auto;
	   -moz-hyphens: auto;
	    -ms-hyphens: auto;
	        hyphens: auto;
	word-wrap: break-word;
	-webkit-column-count: 3;
	   -moz-column-count: 3;
	    -ms-column-count: 3;
	        column-count: 3;
	-webkit-column-gap: 60px;
	   -moz-column-gap: 60px;
	    -ms-column-gap: 60px;
	        column-gap: 60px;
	-webkit-column-fill: auto;
	   -moz-column-fill: auto;
	    -ms-column-fill: auto;
	        column-fill: auto;
}

.columns-2 {
	-webkit-column-count: 2;
	   -moz-column-count: 2;
	    -ms-column-count: 2;
	        column-count: 2;	
}

.columns-4 {
	-webkit-column-count: 4;
	   -moz-column-count: 4;
	    -ms-column-count: 4;
	        column-count: 4;	
}

.column-break {
	-webkit-column-break-after: always;
				   break-after: always;
			  page-break-after: always;
}

@media screen and (max-width: 768px) {
	.columns-2,
	.columns-3,
	.columns-4 {
		-webkit-column-count: 1;
		   -moz-column-count: 1;
		    -ms-column-count: 1;
		        column-count: 1;
		-webkit-column-gap: 0;
		   -moz-column-gap: 0;
		    -ms-column-gap: 0;
		        column-gap: 0;
		-webkit-column-fill: auto;
		   -moz-column-fill: auto;
		    -ms-column-fill: auto;
		        column-fill: auto;
	}
}

.bullets {
	list-style-position: outside;
	padding-left: 30px;
}

.bullets li {
	list-style-type: disc;
}

hr {
	background-color: #b5bebe;
	width: 19%;
	height: 1px;
	margin: 40px auto;
}

.hidden { display: none; }

/* ! Sections */

section { width: 100%; }

.container {
	position: relative;
	width: 1043px;
	margin: 0 auto;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
}

@media screen and (max-width: 768px) {
	.container {
		width: 100%;
		padding-left: 15px;
		padding-right: 15px;
	}
}

/* ! Buttons */

.btn, .ui-button {
	display: inline-block;
	height: 43px;
	padding: 0 25px;
	font-family: "Gotham Medium";
	font-size: 16px;
	letter-spacing: 1px;
	line-height: 43px;
	color: #fff;
	border: none;
	outline: none;
	cursor: pointer;
	background-color: #cacaca;
	text-transform: uppercase;
	text-rendering: optimizelegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-appearance: none;
 	-webkit-border-radius: 30px;
	   -moz-border-radius: 30px;
	    -ms-border-radius: 30px;
	        border-radius: 30px;
	-webkit-transition: color, background-color 0.2s ease-out;
	   -moz-transition: color, background-color 0.2s ease-out;
	    -ms-transition: color, background-color 0.2s ease-out;
	        transition: color, background-color 0.2s ease-out;
}

.btn::-moz-focus-inner, .ui-button::-moz-focus-inner { /* remove extra padding in Firefox */
    margin: 0;
    padding: 0;
    border: 0;
}

.btn.blue   { background-color: #4fb8ec; }
.btn.orange { background-color: #ea6830; }
.btn.green  { background-color: #3fc644; }
.btn.pink   { background-color: #f6586a; }
.btn.cyan   { background-color: #4fc4bc; }

.btn:hover, .ui-button:hover { background-color: #b9b9b9; }
.btn.blue:hover   { background-color: transparent; }
.btn.orange:hover { background-color: transparent; }
.btn.green:hover  { background-color: transparent; }
.btn.pink:hover   { background-color: #d85264; }
.btn.cyan:hover   { background-color: #3db5ac; }

/* ! Fonts */

@font-face {
	font-family: 'Gotham Bold';
	src: url('../../voicevoice.com/fonts/gotham-bold.eot');
	src: url('../../voicevoice.com/fonts/gotham-bold.eot') format('embedded-opentype'),
		 url('../../voicevoice.com/fonts/gotham-bold.woff') format('woff'),
		 url('../../voicevoice.com/fonts/gotham-bold.ttf') format('truetype'),
		 url('../../voicevoice.com/fonts/gotham-bold.svg') format('svg');
}

@font-face {
	font-family: 'Gotham Bold Italic';
	src: url('../../voicevoice.com/fonts/gotham-bolditalic.eot');
	src: url('../../voicevoice.com/fonts/gotham-bolditalic.eot') format('embedded-opentype'),
		 url('../../voicevoice.com/fonts/gotham-bolditalic.woff') format('woff'),
		 url('../../voicevoice.com/fonts/gotham-bolditalic.ttf') format('truetype'),
		 url('../../voicevoice.com/fonts/gotham-bolditalic.svg') format('svg');
}

@font-face {
	font-family: 'Gotham Book';
	src: url('../../voicevoice.com/fonts/gotham-book.eot');
	src: url('../../voicevoice.com/fonts/gotham-book.eot') format('embedded-opentype'),
		 url('../../voicevoice.com/fonts/gotham-book.woff') format('woff'),
		 url('../../voicevoice.com/fonts/gotham-book.ttf') format('truetype'),
		 url('../../voicevoice.com/fonts/gotham-book.svg') format('svg');
}

@font-face {
	font-family: 'Gotham Book Italic';
	src: url('../../voicevoice.com/fonts/gotham-bookitalic.eot');
	src: url('../../voicevoice.com/fonts/gotham-bookitalic.eot') format('embedded-opentype'),
		 url('../../voicevoice.com/fonts/gotham-bookitalic.woff') format('woff'),
		 url('../../voicevoice.com/fonts/gotham-bookitalic.ttf') format('truetype'),
		 url('../../voicevoice.com/fonts/gotham-bookitalic.svg') format('svg');
}

@font-face {
	font-family: 'Gotham Medium';
	src: url('../../voicevoice.com/fonts/gotham-medium.eot');
	src: url('../../voicevoice.com/fonts/gotham-medium.eot') format('embedded-opentype'),
		 url('../../voicevoice.com/fonts/gotham-medium.woff') format('woff'),
		 url('../../voicevoice.com/fonts/gotham-medium.ttf') format('truetype'),
		 url('../../voicevoice.com/fonts/gotham-medium.svg') format('svg');
}

@font-face {
	font-family: 'Gotham Light';
	src: url('../../voicevoice.com/fonts/gotham-light.eot');
	src: url('../../voicevoice.com/fonts/gotham-light.eot') format('embedded-opentype'),
		 url('../../voicevoice.com/fonts/gotham-light.woff') format('woff'),
		 url('../../voicevoice.com/fonts/gotham-light.ttf') format('truetype'),
		 url('../../voicevoice.com/fonts/gotham-light.svg') format('svg');
}

@font-face {
	font-family: 'Gotham Light Italic';
	src: url('../../voicevoice.com/fonts/gotham-lightitalic.eot');
	src: url('../../voicevoice.com/fonts/gotham-lightitalic.eot') format('embedded-opentype'),
		 url('../../voicevoice.com/fonts/gotham-lightitalic.woff') format('woff'),
		 url('../../voicevoice.com/fonts/gotham-lightitalic.ttf') format('truetype'),
		 url('../../voicevoice.com/fonts/gotham-lightitalic.svg') format('svg');
}

@font-face {
	font-family: 'Gotham Thin';
	src: url('../../voicevoice.com/fonts/gotham-thin.eot');
	src: url('../../voicevoice.com/fonts/gotham-thin.eot') format('embedded-opentype'),
		 url('../../voicevoice.com/fonts/gotham-thin.woff') format('woff'),
		 url('../../voicevoice.com/fonts/gotham-thin.ttf') format('truetype'),
		 url('../../voicevoice.com/fonts/gotham-thin.svg') format('svg');
}

@font-face {
	font-family: 'Gotham Condensed Bold';
	src: url('../../voicevoice.com/fonts/GothamCond-Bold.eot');
	src: url('../../voicevoice.com/fonts/GothamCond-Bold.eot') format('embedded-opentype'),
		 url('../../voicevoice.com/fonts/GothamCond-Bold.woff') format('woff'),
		 url('../../voicevoice.com/fonts/GothamCond-Bold.ttf') format('truetype'),
		 url('../../voicevoice.com/fonts/GothamCond-Bold.svg') format('svg');
}

@font-face {
	font-family: 'Gotham Narrow Book';
	src: url('../../voicevoice.com/fonts/GothamNarrow-Book.eot');
	src: url('../../voicevoice.com/fonts/GothamNarrow-Book.eot') format('embedded-opentype'),
		 url('../../voicevoice.com/fonts/GothamNarrow-Book.woff') format('woff'),
		 url('../../voicevoice.com/fonts/GothamNarrow-Book.ttf') format('truetype'),
		 url('../../voicevoice.com/fonts/GothamNarrow-Book.svg') format('svg');
}

@font-face {
	font-family: 'Gotham Narrow Medium';
	src: url('../../voicevoice.com/fonts/GothamNarrow-Medium.eot');
	src: url('../../voicevoice.com/fonts/GothamNarrow-Medium.eot') format('embedded-opentype'),
		 url('../../voicevoice.com/fonts/GothamNarrow-Medium.woff') format('woff'),
		 url('../../voicevoice.com/fonts/GothamNarrow-Medium.ttf') format('truetype'),
		 url('../../voicevoice.com/fonts/GothamNarrow-Medium.svg') format('svg');
}

@font-face {
	font-family: 'Gotham XNarrow Medium';
	src: url('../../voicevoice.com/fonts/GothamXNarrow-Medium.eot');
	src: url('../../voicevoice.com/fonts/GothamXNarrow-Medium.eot') format('embedded-opentype'),
		 url('../../voicevoice.com/fonts/GothamXNarrow-Medium.woff') format('woff'),
		 url('../../voicevoice.com/fonts/GothamXNarrow-Medium.ttf') format('truetype'),
		 url('../../voicevoice.com/fonts/GothamXNarrow-Medium.svg') format('svg');
}

/* ! Nav */

nav {
	position: relative;
	width: 100%;
	height: 98px;
	background-color: #183238;
	z-index: 3;
}

#nav-logo {
	display: inline-block;
	margin-top: 25px;
	width: 208px;
	height: 54px;
	background: url(../../voicevoice.com/images/vv-logo-white-horiz.svg) no-repeat;
	background-size: contain;
}

@media screen and (max-width: 768px) {
	nav {
		height: 60px;
	}

	#nav-logo {
		width: 143px !important;
		height: 37px !important;
		margin-top: 15px;
	}
}

/* ! Nav menu */

#nav-menu {
    position: relative;
    float: right;
	margin-top: 36px;
}

#nav-menu li {
	display: inline-block;
	margin-left: 23px;
}

#nav-menu li.active { border-bottom: 2px solid #f6586a; }

#nav-menu li.active a { pointer-events: none; }

#nav-menu li a {
	display: block;
	margin-bottom: 6px;
	font-family: "Gotham Medium";
	font-size: 14px;
	line-height: 14px;
	color: #bac2c4;
	text-transform: uppercase;
}

#nav-menu li a:hover {
	opacity: .8;
	text-decoration: none;
}

@media screen and (max-width: 768px) {
	#nav-menu {
		visibility: hidden;
		opacity: 0;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		margin: 0;
		padding: 15px 30px;
		background-color: #183238;		
		box-sizing: border-box;
		-moz-box-sizing: border-box;
	}

	#nav-menu.visible {
		visibility: visible;
		opacity: 1;
	}

	#nav-menu li {
		display: block;
		margin: 0;
	}

	#nav-menu li.active { border: none; }

	#nav-menu li a {
		margin-bottom: 0;
		font-size: 18px;
		line-height: 47px;
	}

	#nav-menu li.active a { color: #818788; }

}

/* ! Nav hamburger menu */

.hamburger-menu {
	display: none;
	position: relative;
	float: right;
	width: 30px;
	height: 30px;
	margin-top: 18px;
	text-align: center;
	cursor: pointer;
	z-index: 1;
}

@media screen and (max-width: 768px) {
	.hamburger-menu { display: block; }
}

.hamburger-menu:hover { opacity: .7; }

.hamburger-menu:before { /* hamburger icon */
	content: "";
	display: block;
	width: 30px;
	height: 4px;
	background-color: #bac2c4;
	-webkit-border-radius: 1px;
	   -moz-border-radius: 1px;
	    -ms-border-radius: 1px;
	        border-radius: 1px;
	-webkit-box-shadow: 0 10px 0 0 #bac2c4, 0 20px 0 0 #bac2c4;
	   -moz-box-shadow: 0 10px 0 0 #bac2c4, 0 20px 0 0 #bac2c4;
	    -ms-box-shadow: 0 10px 0 0 #bac2c4, 0 20px 0 0 #bac2c4;
	        box-shadow: 0 10px 0 0 #bac2c4, 0 20px 0 0 #bac2c4;
}

.hamburger-menu.active:before { display: none; } /* hide hamburger icon when active */

.hamburger-menu.active:after { /* close icon */
	content: "×";
	font-family: "Helvetica";
	font-size: 37px;
	line-height: 17px;
	color: #bac2c4;
}

/* ! Page header with icon */

.icon-header {
	position: relative;
	margin-top: -98px;
	padding: 142px 0 22px 0;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	z-index: 1;
}

.icon-header div.container { 
	text-align: center;
}

.icon-header h2 { margin-bottom: 17px; }

.icon-header p.lead {
	font-family: "Gotham Narrow Book";
	font-size: 20px;
}

.icon-header span {
	display: inline-block;
	width: 48px;
	height: 48px;
	margin-bottom: 17px;
	color: #fff;
	font-size: 23px;
	line-height: 49px;
	background: #4fc4bc;
	-webkit-border-radius: 40px;
	   -moz-border-radius: 40px;
	    -ms-border-radius: 40px;
	        border-radius: 40px;
}

/* ! Signup strip */

#signup-strip {
	width: 100%;
	padding: 77px 0 54px 0;
	background-color: #f6586a;
}

@media screen and (max-width: 768px) {
	#signup-strip {
		padding-top: 70px;
	}
}

#signup-strip p, #signup-strip h2 { color: #fff; }

#signup-strip h2 {
	margin-bottom: 43px;
	text-align: center;
}

#signup-strip label p {
	display: inline;
	margin-bottom: 14px;
	line-height: 21px;
}

@media screen and (max-width: 768px) {
	#signup-strip p.lead { line-height: 21px; }
}

@media screen and (max-width: 768px) and (orientation: landscape) {
	#signup-strip p.lead { font-size: 24px; }
}

#signup-strip ul { margin-bottom: 49px; }

#signup-strip .signup span.error { color: #ffee7e; }

#signup-strip .checkboxes {
	margin: 0 auto;
	width: 565px;
}

@media screen and (max-width: 768px) {
	#signup-strip .checkboxes {
		width: auto;
	}
}

#signup-strip .checkboxes div { margin-bottom: 14px; }

#signup-strip textarea {
	margin-bottom: 31px;
	height: 100px;
}

#signup-strip p.arealabel { margin: 20px 0 5px 0; }

#signup-strip .checkboxes div.form-reveal {
	overflow: hidden;
	height: 35px;
	margin-bottom: 0;
	-webkit-transition: all 0.2s ease-out;
	   -moz-transition: all 0.2s ease-out;
	    -ms-transition: all 0.2s ease-out;
	        transition: all 0.2s ease-out;
}

@media screen and (max-width: 768px) {
	#signup-strip .checkboxes div.form-reveal { height: 61px; }
}

#signup-strip .checkboxes div.form-reveal.active { height: 205px; }

@media screen and (max-width: 768px) {
	#signup-strip .checkboxes div.form-reveal.active { height: 264px; }
}

/* ! Footer */

footer {
	display: none;
	width: 100%;
	background-color: #183238;
}

footer div.container {
	padding: 57px 0 75px 0;
	text-align: left;
	border-top: 1px solid #546e7b;
}

#footer-logo {
	width: 242px;
	height: 63px;
	margin-bottom: 46px;
	background: url(../../voicevoice.com/images/global-sprites.png) -218px 0;
}

/* ! Copyright */

#copyright {
	width: 100%;
	height: 82px;
	background-color: #183238;
}

#copyright p {
	margin-bottom: 0;
	font-size: 12px;
	color: #5e7074;
	line-height: 82px;
	text-transform: uppercase;
}

@media screen and (max-width: 768px) {
	#copyright p { font-size: 11px; }
}

#copyright .rackspace-powered {
	position: absolute;
	top: 25px;
	right: 0;
	opacity: .3;
	width: 139px;
	height: 31px;
	background: url(../../voicevoice.com/images/rackspace-powered.png);
}

@media screen and (max-width: 480px) {
	#copyright .rackspace-powered {
		display: none;
	}
}

/* ! Forms */

/* Signup form */

.signup ul {
	width: 795px;
	height: 50px;
	margin: 0 auto;
}

@media screen and (max-width: 768px) {
	.signup ul {
		width: 100%;
		height: auto;
	}
}

.signup ul li {
	display: block;
	float: left;
	margin-left: 1px;
	text-align: left;
}

@media screen and (max-width: 768px) {
	.signup ul li {
		float: none;
	}
}

.signup ul li:first-child input {
	-webkit-border-radius: 30px 0 0 30px;
	   -moz-border-radius: 30px 0 0 30px;
	    -ms-border-radius: 30px 0 0 30px;
	        border-radius: 30px 0 0 30px;
}

.signup input[type="text"],
textarea {
	display: block;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	width: 205px;
	height: 50px;
	padding: 0 17px;
	font-family: "Gotham Book";
	font-size: 16px;
	color: #404343;
	background-color: #fff;
	-webkit-transition: background-color 0.2s ease-out;
	   -moz-transition: background-color 0.2s ease-out;
	    -ms-transition: background-color 0.2s ease-out;
	        transition: background-color 0.2s ease-out;
}

@media screen and (max-width: 768px) {
	.signup input[type="text"],
	.signup input[type="submit"],
	textarea {
		width: 100%;
		margin-bottom: 10px;
		-webkit-border-radius: 6px !important;
		   -moz-border-radius: 6px !important;
		    -ms-border-radius: 6px !important;
		        border-radius: 6px !important;
	}
}

.signup ::-webkit-input-placeholder { color: #b2b2b2; }
.signup ::-moz-placeholder          { color: #b2b2b2; }
.signup :-moz-placeholder           { color: #b2b2b2; }
.signup :-ms-input-placeholder      { color: #b2b2b2; }

.signup input[type="submit"] {
	display: block;
	height: 50px;
	padding: 0 35px;
	line-height: 50px;
	-webkit-appearance: none;
	-webkit-border-radius: 0 30px 30px 0;
	   -moz-border-radius: 0 30px 30px 0;
	    -ms-border-radius: 0 30px 30px 0;
	        border-radius: 0 30px 30px 0;
}

input[type="submit"]::-moz-focus-inner { /* remove extra padding in Firefox */
    margin: 0;
    padding: 0;
    border: 0;
}

/* Checkbox */

input[type="checkbox"] { display: none; }

input[type="checkbox"] + label:before { /* unchecked */
	content: "";
	display: inline-block;
	width: 17px;
	height: 17px;
	margin-right: 8px;
	font-size: 14px;
	line-height: 19px;
	vertical-align: text-top;
	background-color: #fff;
	-webkit-border-radius: 3px;
	   -moz-border-radius: 3px;
	    -ms-border-radius: 3px;
	        border-radius: 3px;
}

input[type="checkbox"]:checked + label:before { /* checked */
	content: "\2714";
	color: #fff;
	text-align: center;
	background-color: #4fc4bc;
}

/* Textarea */
textarea {
	width: 100%;
	padding: 14px 17px;
	border: none;
	-webkit-border-radius: 3px;
	   -moz-border-radius: 3px;
	    -ms-border-radius: 3px;
	        border-radius: 3px;	
}

/* Errors */

.signup span.error {
	position: absolute;
	margin-top: -22px;
	font-family: "Gotham Bold";
	font-size: 13px;
	color: #ff5c61;
	text-transform: uppercase;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

@media screen and (max-width: 768px) {
	.signup span.error {
		position: relative;
		margin-top: 0;
	}	
}

/* Regular forms */

.form label {
	display: block;
	margin-bottom: 7px;
	font-family: "Gotham Medium";
	font-size: 14px;
	text-transform: uppercase;
}

.form input[type="text"],
.form input[type="email"],
.form textarea {
	display: block;
	box-sizing: border-box;
	width: 100%;
	height: 35px;
	margin-bottom: 20px;
	padding: 0 13px;
	font-family: "Gotham Book";
	font-size: 14px;
	color: #0d1b20;
	border: 1px solid #c4c4c4;
	background-color: #f9f9f9;
	text-rendering: optimizelegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-border-radius: 3px;
	   -moz-border-radius: 3px;
	    -ms-border-radius: 3px;
	        border-radius: 3px;	
	-webkit-transition: background-color 0.2s ease-out;
	   -moz-transition: background-color 0.2s ease-out;
	    -ms-transition: background-color 0.2s ease-out;
	        transition: background-color 0.2s ease-out;
}

.form textarea { padding: 13px; }

.form input[type="text"]:focus,
.form input[type="email"]:focus,
.form textarea:focus {
	background-color: #fff;
}

/* Errors */

.form input.error,
.form textarea.error {
	border-color: #f6586a;
}

.form span.error {
	font-family: "Gotham Book";
	font-size: 13px;
	color: #f6586a;
}

/* Dialogs */

/* jQuery UI defaults */

.ui-dialog {
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	background: #fff;
	z-index: 100;
}

.ui-dialog-titlebar { position: relative; }

.ui-dialog-titlebar-close {
	position: absolute;
	right: .3em;
	top: 50%;
	width: 20px;
	margin: -10px 0 0 0;
	padding: 1px;
	height: 20px;
}

.ui-dialog-buttonpane .ui-dialog-buttonset { float: right; }

.ui-helper-clearfix::after { clear: both; }

.ui-helper-clearfix::before, .ui-helper-clearfix::after {
	content: "";
	display: table;
	border-collapse: collapse;
}

.ui-widget-overlay {
	position: fixed;
	opacity: .5;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
}

/* Dialogs Global */

.ui-dialog {
	-webkit-border-radius: 10px;
	   -moz-border-radius: 10px;
	    -ms-border-radius: 10px;
	        border-radius: 10px;
}

.ui-dialog-titlebar, .ui-dialog-content, .ui-dialog-buttonpane { padding: 25px; }

.ui-dialog-titlebar-close { display: none; }

.ui-dialog-title {
	font-family: "Gotham Book";
	font-size: 32px;
	color: #fff;
	letter-spacing: -1px;
	text-rendering: optimizelegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.ui-dialog-title:before { /* icon */
	content: "";
	margin-right: 15px;
	font-family: 'icomoon';
	speak: none;
}

@media screen and (max-width: 768px) {
	.ui-dialog { width: 90% !important; }
	
	.ui-dialog-title { font-size: 20px; }
	
	.ui-dialog-titlebar, .ui-dialog-content, .ui-dialog-buttonpane { padding: 15px; }
}

/* Dialog Types */

.ui-dialog.success .ui-dialog-titlebar { background: #91b16e; }
.ui-dialog.success .ui-dialog-title:before { content: "\e042"; }

.ui-dialog.error .ui-dialog-titlebar { background: #d27c6a; }
.ui-dialog.error .ui-dialog-title:before { content: "\e043"; }

/*
     FILE ARCHIVED ON 16:48:18 Mar 24, 2016 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 14:47:43 Apr 23, 2026.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  capture_cache.get: 16.27
  load_resource: 2126.313
  PetaboxLoader3.resolve: 67.394
  PetaboxLoader3.datanode: 2044.787
*/