/*
Theme Name: Discovery Slo
Author: Mike Torosian 
Author URI: http://www.discoveryslo.com
Description: Ticketfly Contractor Theme for Platinum Level Sites Based on _s
Version: 1.0
Text Domain: ticketfly-contractor_s
Domain Path: /languages/

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

 gold-parent_s is based on Underscores http://underscores.me/, (C) 2012-2014 Automattic, Inc.

Resetting and rebuilding styles have been helped along thanks to the fine work of
Eric Meyer http://meyerweb.com/eric/tools/css/reset/index.html
along with Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
and Blueprint http://www.blueprintcss.org/

Other styles towards the bottom have been pulled from "html5 shell by mimoYmima.com: a Framework for rapidly developing HTML5 based WordPress Themes".
*/


/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 - Reset
2.0 - Typography
3.0 - Elements
4.0 - Forms
5.0 - Navigation
6.0 - Accessibility
7.0 - Alignments
8.0 - Clearings
9.0 - Widgets - REMOVED
10.0 - Content
	10.1 - Posts and pages
	10.2 - Asides
	10.3 - Comments
11.0 - Infinite scroll
12.0 - Media
13.0 - mimoYmima
14.0 - Ticketfly Parts
--------------------------------------------------------------*/

/*--------------------------------------------------------------
1.0 - Reset
--------------------------------------------------------------*/
html {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box; 
	overflow-y: scroll;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

*, *:before, *:after {
	-webkit-box-sizing: inherit;
	-moz-box-sizing: inherit;
	box-sizing: inherit; 
}

html, body, div, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, ol, ul, li, form, legend, label, table, header, footer, nav, section, figure {
	margin: 0;
	padding: 0; 
}

header, footer, nav, section, article, hgroup, figure {
	display: block; 
}

body {
	background: #000;
	color: #161616;
	font-family: 'Open Sans', sans-serif;
	font-size: 100%;
	font-weight: 300;	
	line-height: 1.5; 
}

table {
	border-collapse: separate;
	border-spacing: 0;
	margin: 0 0 1.375em;
	width: 100%;
}

th {
	font-weight: bold;
}

caption, th, td {
	font-weight: normal;
	text-align: left;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: ""
}

blockquote, q {
	quotes: "" "";
}

a {
	color: #41b1fc;
}

a:hover,
a:active {
	outline: 0;
}

a img {
	border: 0;
}

img {
	max-width: 100%;
	height: auto;	
}

/*--------------------------------------------------------------
Containers
--------------------------------------------------------------*/
.container {
	width: 94%;
	margin-left: auto;
	margin-right: auto;
	max-width: 1020px;
	*zoom: 1;
}

@media screen and (min-width: 900px) {
	.container {
		width: 90%;	
	}
}
	
.container:after {
	content: "";
	display: table;
	clear: both; 
}

/*--------------------------------------------------------------
Typography
--------------------------------------------------------------*/
/* Fixes a bug in webkit with fonts being animated */
html {-webkit-font-smoothing: antialiased;}

/* Prevent font scaling in landscape mode on phones */
@media all and (orientation:landscape) {
	html {
    	-webkit-text-size-adjust: none;
    }
}

body,
button,
input,
select,
textarea {
	font-family: 'Open Sans', sans-serif;
	font-size: 100%;
	font-weight: 300;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Oswald', sans-serif;
	font-weight: 400;
	line-height :1.125;
	margin: 0 0 0.5em;		
}

h1 {
	font-size: 2em
}

h1.page-title {
	margin-bottom: 1em;	
}

h2 {
	font-size: 1.5em
}

h3 {
	font-size: 1.25em
}

h4 {
	font-size: 1em
}

h5 {
	font-size: 0.875em
}

h6 {
	font-size: 0.75em
}

em, i {
	font-style: italic
}

strong, b {
	font-weight: 700
}

hr {
	border: 0;
	border-bottom: 1px solid #141414;
	height: 0;
	margin: 1.375em 0
}

abbr {
	border-bottom: 1px dotted #fff;
	cursor: help
}

p, ul, ol, dl {
	margin-bottom: 1.75em;
}

p.intro {
	font-size: 1.5em;	
}

ul ul, 
ol ol, 
ul ol, 
ol ul {
	margin-bottom: 0
}

dt {
	font-weight: 700
}

dd {
	margin: 0 0 .5em;
	padding-bottom: .5em;
	border-bottom: 1px solid #eee
}

blockquote {
	border-left: 4px solid #f29f21;
	font-size: 1.25em;
	font-style: italic;
	font-weight: 300;
	margin: 0;
	padding: 0 4.1666666666%
}

sup,
sub {
	font-size: 75%;
	height: 0;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	bottom: 1em;
}

sub {
	top: .5em;
}

small {
	font-size: 75%;
}

big {
	font-size: 125%;
}

/*--------------------------------------------------------------
Forms
--------------------------------------------------------------*/
button, input, optgroup, select, textarea {
	color: inherit;
	font: inherit;
	margin: 0
}

button {
	overflow: visible
}

button, select {
	text-transform: none
}

button, html input[type="button"], input[type="reset"], input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer
}

button[disabled], html input[disabled] {
	cursor: default
}

button::-moz-focus-inner, 
input::-moz-focus-inner {
	border: 0;
	padding: 0
}

input {
	line-height: normal
}

input[type="checkbox"], 
input[type="radio"] {
	box-sizing: border-box;
	padding: 0
}

input[type="number"]::-webkit-inner-spin-button, 
input[type="number"]::-webkit-outer-spin-button {
	height: auto
}

input[type="search"] {
	-webkit-appearance: textfield;
	-moz-box-sizing: content-box;
	-webkit-box-sizing: content-box;
	box-sizing: content-box
}

input[type="search"]::-webkit-search-cancel-button, 
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance:none
}

fieldset {
	border: 0;
	margin: 0 0 1.375em;
	padding: 1em 0;
}

legend {
	border: 0;
	font-weight: 700;
	margin-bottom: .2em;	
	padding: 0
}

textarea {
	overflow: auto
}

optgroup {
	font-weight: 700
}

label {
	display: block;
	font-weight: 700;
	padding-bottom: .25em
}

button, input, select, textarea {
	font-size:100%;
	margin:0
}

input[type=number], input[type=search], input[type=text], input[type=url], textarea {
	-webkit-appearance:none
}

.embed-container { 
	position: relative; 
	padding-bottom: 56.25%; 
	height: 0; 
	overflow: hidden; 
	max-width: 100%; 
} 

.embed-container iframe, 
.embed-container object, 
.embed-container embed { 
	position: absolute; 
	top: 0; 
	left: 0; 
	width: 100%; 
	height: 100%; 
}

.req {
	color: #ff0000;
	font-size: 80%;	
}

.wpcf7 br {
	display: none;	
}

.wpcf7 .wpcf7-text,
.wpcf7 .wpcf7-textarea {
	border: 1px solid #ccc;
	color: #000;
	display: block;
	padding: 1em;
	width: 100%;
}

.wpcf7 ::-webkit-input-placeholder {
   color: #999;
}

.wpcf7 :-moz-placeholder { /* Firefox 18- */
   color: #999;
}

.wpcf7 ::-moz-placeholder {  /* Firefox 19+ */
   color: #999;
}

.wpcf7 :-ms-input-placeholder {  
   color: #999;
}

.wpcf7 .wpcf7-submit {
	background-color: #24a9e1;
	border: none;
	border-radius: 10px;
	color: #fff;
	display: inline-block;
	font-size: 1em;	
	font-weight: 700;
	margin-top: 0.625em;
	padding: 1.125em 1.5em;
	text-align: center;
	text-decoration: none;	
	transition: background-color 0.3s ease;
}

.wpcf7 .wpcf7-submit:hover,
.wpcf7 .wpcf7-submit:focus {
	background-color: #0B90C8;
	cursor: pointer;
}

.wpcf7 label {
	padding-top: 0.75em;	
}

.wpcf7 .wpcf7-radio label {
	display: inline;
	font-weight: 400;
	padding: 0;	
}

.wpcf7 label:first-child {
	padding-top: 0;	
}

span.wpcf7-list-item {
	margin-left: 0;
	margin-right: 0.75em;	
}

@media screen and (min-width: 600px) {
	.wpcf7 .wpcf7-text {
		width: 70%;	
	}
}

div.wpcf7-response-output {
	padding: 1.25em;
}

div.wpcf7-validation-errors,
div.wpcf7-spam-blocked {
	background: #ffe2e2;
	border: 1px solid #ff8a8a;
	color: #ec3c06;
}

div.wpcf7-mail-sent-ng {
	background: #fff2e2;
	border: 1px solid #ffbc8a;
	color: #e17731;
}

div.wpcf7-mail-sent-ok {
	background: #e8ffe2;
	border: 1px solid #6fdf51;
	color: #1ea524;
}

input[type=text].wpcf7-not-valid, 
input[type=email].wpcf7-not-valid, 
input[type=tel].wpcf7-not-valid, 
textarea.wpcf7-not-valid {
	border: 1px solid #ec3c06!important;
}

span.wpcf7-not-valid-tip {
	display: block;
	color: #ec3c06;
	border: none;
	position: relative;
	top: auto;
	left: auto;
	padding: 0;
	margin-top: 0.125em;
	background: none;
	font-size: 16px;
	font-size: 1rem;
}

/*--------------------------------------------------------------
Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}
.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin: 0 auto;
}

/*--------------------------------------------------------------
Clearings
--------------------------------------------------------------*/
.group:after {
	content: "";
	display: table;
	clear: both; 
}

/*--------------------------------------------------------------
Header
--------------------------------------------------------------*/
.site-header {
	background: #000 url('img/wood-texture-header.jpg') repeat-x;
	position: relative;	
}

.mobile-utility {
	color: #fff;	
	padding: 0.625em 0;	
	position: relative;			
}

.mobile-utility p {
	font-size: 0.875em;	
}

.mobile-utility .first {
	border-bottom: 1px dotted rgba(255, 255, 255, 0.5);	
}

.mobile-utility .second {
	padding-top: 1.375em;	
}

@media screen and (min-width: 600px) {
	.mobile-utility .col-1-2 {	
		float: left;
		width: 50%;
	}
	
	.mobile-utility .first {
		border-bottom: none;
	}	
	
	.mobile-utility .second {
		padding-top: 0;
	}	
}

.mobile-utility .social {
	list-style-type: none;	
}

.mobile-utility .social li {
	display: inline-block;	
	margin: 0 0.3125em;
}

.mobile-utility .social li i {
	font-size: 0.875em;	
}

.mobile-utility .social li:first-child {
	margin-left: 0;	
}

.mobile-utility .social li:last-child {
	margin-right: 0;	
}

.mobile-utility .social li a {
	background-color: #fff;
	border-radius: 50%;
	color: #000;
	display: block;
	line-height: 24px;
	width: 24px;
	height: 24px;
	text-align: center;
	transition: background-color 0.3s ease;
}

.mobile-utility .social li a:hover,
.mobile-utility .social li a:focus {
	background-color: #24a9e1;
}

#mobile-locations {
	display: block;	
}

.js #mobile-locations {
	display: none;	
}

#locations-toggle,
#toggle-close {
	color: #fff;
	display: block;
	font-size: 2em;
	position: absolute;		
	transition: color 0.3s ease;
}

#locations-toggle {
	left: 5%;
	top: 44px;
	top: 2.15625rem;
}

#toggle-close {
	top: 0.4375em;
	right: 5%;	
}

#locations-toggle:hover, #locations-toggle:focus,
#toggle-close:hover, #toggle-close:focus {
	color: #25a6dd;		
}

@media screen and (min-width: 900px) {
	#locations-toggle {
		display: none;
	}		
}

.utility {
	color: #fff;
	display: none;
	padding: 0.625em 0;	
}

@media screen and (min-width: 900px) {
	.utility {
		display: block;
	}
}

.utility p, .utility span {
	font-size: 0.875em;
	margin: 0;	
}

.utility .textwidget {
	display: inline;	
}

.utility .hours {
	color: #fff;
	display: inline-block;
	margin-right: 0.5em;	
}

.utility .address,
.utility .phone {
	color: #fff;
	display: inline-block;
	margin-left: 0.5em;	
}

.utility .address {
	margin-right: 0.5em;	
}

.utility .fa {
	color: #25a6dd;
	display: inline-block;
	margin-right: 0.25em;	
}

.utility .left {
	float: left;	
}

.utility .right {
	float: right;	
}

.brand {
	padding: 1.25em 0;	
}

.brand a {
	display: block;
	margin-left: auto;
	margin-right: auto;
	max-width: 150px;	
}

@media screen and (min-width: 900px) {
	.brand a {
		margin: 0;	
		max-width: 180px;
	}
}

.brand img {
	display: block;
	width: 100%;
	height: auto;	
}

@media screen and (min-width: 900px) {
	.brand > div {
		float: left;	
	}
}

.brand .social {
	display: none;
}

@media screen and (min-width: 900px) {
	.brand .social {
		display: block;
		float: right;
		line-height: 1;
		list-style-type: none;
		margin: 1.03125em 0 0 0;				
	}	
	
	.brand .social li {
		display: inline-block;	
		margin-right: 0.625em;
	}
	
	.brand .social li.block {
		color: #fff;
		display: block;
		font-size: 0.875em;
		margin: 0.875em 0 0 0;	
	}
	
	.brand .social li i {
		font-size: 1.125em;	
	}
	
	.brand .social li.block i {
		margin-right: 0.3125em;	
	}
	
	.brand .social li:last-child {
		margin-right: 0;	
	}
	
	.brand .social li a {
		background-color: #fff;
		border-radius: 50%;
		color: #000;
		display: block;
		line-height: 34px;
		width: 34px;
		height: 34px;
		text-align: center;
		transition: background-color 0.3s ease;
	}
	
	.brand .social li.block a {
		background: none;
		border-radius: none;
		color: #fff;
		display: inline-block;
		line-height: 1;
		width: auto;
		height: auto;
		text-decoration: none;
		text-transform: uppercase;	
		transition: color 0.3s ease;
	}
	
	.brand .social li a:hover,
	.brand .social li a:focus {
		background-color: #24a9e1;
	}
	
	.brand .social li.block a:hover,
	.brand .social li.block a:focus {
		background: none;	
		color: #24a9e1;
	}
}


/*--------------------------------------------------------------
1.0 - Navigation
--------------------------------------------------------------*/
.toggleMenu {
	color: #fff;
	display: block;
	font-size: 2em;
	position: absolute;
	right: 5%;	
	top: 46px;
	top: 1.90625rem;
	text-decoration: none;
	transition: color 0.3s ease;
}

.toggleMenu:hover,
.toggleMenu:focus {
	color: #25a6dd;			
}

@media (min-width: 900px) {
	.toggleMenu {
		display: none;	
	}
}

#nav {
	clear: both;	
}

.site-navigation {
	background-color: #fff;	
}

@media screen and (min-width: 900px) {
	.site-navigation  {
		box-shadow: 0 2px 2px rgba(0, 0, 0, 0.05);	
	}
}

.navigation {
	font-family: 'Oswald', sans-serif;
	font-weight: 400;
	line-height: 1;
	list-style-type: none;
	margin: 0;
	padding: 0;
	text-align: center;
	text-transform: uppercase;
	*zoom: 1;
}

.navigation ul {
	display: block;
	line-height: 1;
	margin: 0;
	padding: 0;
   	width: 100%;
}

@media (min-width: 900px) {
	.navigation ul {
		width: 10em;	
	}
}

.navigation li {
	letter-spacing: 0.05em;
	list-style-type: none;
	position: relative;
	text-transform: uppercase;
}

@media (min-width: 900px) {
	.navigation > li {
		display: inline-block;
		font-size: 1.125em;
		text-transform: uppercase;
	}
	.navigation > li:last-child {
		margin-right: 0;			
	}
}

.navigation a {
	color: #161616;
	text-decoration: none;	
	transition: color 0.3s ease;
}

.navigation a:hover, .site-nav a:focus {
	color: #25a6dd;	
}

.navigation > li > a {
	border-bottom: 1px solid #ccc;
	color: #161616;
	display: block;
	padding: 0.8em;
	text-align: left;
	text-decoration: none;	
	transition: color 0.3s ease;
}

.navigation > li:last-child > a {
	border-bottom: none;
}

@media (min-width: 900px) {
	.navigation > li > a {
		border: none!important;
		display: block;
		padding: 1em 0.875em;
		text-align: center;	
	}
}

.navigation > li > a.parent:hover,
.navigation > li > a.parent:focus,
.navigation li:hover > a.parent {
	background-color: #f2f2f2;
}

@media (min-width: 900px) {
	.navigation > li > a.parent:hover,
	.navigation > li > a.parent:focus,
	.navigation li:hover > a.parent {
		-webkit-box-shadow: inset 5px 0px 5px -5px rgba(0, 0, 0, 0.15), inset -5px 0px 5px -5px rgba(0, 0, 0, 0.15);
		-moz-box-shadow: inset 5px 0px 5px -5px rgba(0, 0, 0, 0.15), inset -5px 0px 5px -5px rgba(0, 0, 0, 0.15);
		box-shadow: inset 5px 0px 5px -5px rgba(0, 0, 0, 0.15), inset -5px 0px 5px -5px rgba(0, 0, 0, 0.15);
	}
}	

.navigation > li > a:hover,
.navigation > li > a:focus,
.navigation li:hover > a,  
.navigation li.current-page-parent > a,  
.navigation li.current-menu-item > a,  
.navigation li.current-post-parent > a {
	color: #25a6dd;
}

.navigation li li {
	line-height: 1.5;	
	text-align: left;
}

.navigation li li a {
	background: #f2f2f2;
	border-bottom: 1px solid #ccc;
	color: #161616;
    display: block;
	font-size: 16px;
	font-size: 1rem;
	font-weight: 300;
	padding: 0.8em 1.875em 0.8em;
    position: relative;
	text-align: left;
	text-decoration: none;	
	text-transform: none;
	transition: background-color 0.3s ease;
    z-index:100;	
}

@media screen and (min-width: 900px) {
	.navigation li li a {
		padding: 0.9875em 0.8em 1.05em;
	}		
}

.navigation li li:last-child a {
	border-bottom: none;	
}

.navigation li li li a {
	background: #1c1c1c;
	border-bottom: 1px solid #373737;
	padding: 0.9875em 0.8em 1.05em;
	text-decoration: none;	
	transition: background-color 0.3s ease;
	z-index: 200;
}

.navigation li li li:last-child a {
	border-bottom: none;
}

.navigation li li a:hover,
.navigation li li a:focus,
.navigation li li li a:hover,
.navigation li li li a:focus {
	background-image: none;
	background-color: #2796c7;
	color: #fff;
	transform: none;
}

.navigation li .more {
	background: #161616 url("img/down-arrow.png");
	background-size: 9px 5px;
	background-repeat: no-repeat;
	background-position: center center;
	float: right;
	height: 42px;
	width: 10%;
	padding: 0.625em 1em 0.5625em;
	margin: 0;
	cursor: pointer;
	z-index: 200;
	position: relative;		
}

@media (min-width: 900px) {
	.navigation li .more  {
		background: none;	
	}
	
	.navigation li .more:before {
		content: none;	
	}
}

.navigation li ul {
    position: absolute;
    left: -9999px;
}

.navigation > li.hover > ul {
    left: 0;
}

/*@media (min-width: 900px) {
	.navigation > li.hover > ul {
		background: transparent url("img/nav-active.png");
		background-size: 9px 10px;
		background-repeat: no-repeat;
		background-position: 8px top;		
		padding-top: 10px!important;
	}
}*/

.navigation li li.hover ul {
    left: 100%;
    top: 0;
}

@media (max-width: 900px) {
	.navigation > li.hover > ul, 
	.navigation li li.hover ul {
		position: static;
	}
}

/*--------------------------------------------------------------
1.0 - Home Page
--------------------------------------------------------------*/
.hero {
	color: #fff;
	overflow: hidden;
	position: relative;
	text-align: center;	
}

.hero--sub {
	background-image: none;	
}

.hero:after {
	content: "";
	background: rgba(0, 0, 0, 0.4);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.hero .container,
.hero.hero--home .slide {
    height: 390px;
    position: relative;	
}

.hero.hero--home .slide {
	z-index: 2;	
}

.hero.hero--home .slide:after {
	content: "";
	background: rgba(0, 0, 0, 0.4);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;		
}

.hero .v-center,
.hero.hero--home .slide .v-center {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	text-align: center;
	width: 100%;
	z-index: 2;	
}

.hero h1 {
	font-size: 2em;
	font-weight: 400;	
	line-height: 1.25;
	margin: 0 auto 0.875em;
	max-width: 700px;
	text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.5);
}

@media screen and (min-width: 768px) {
	.hero h1 {
		font-size: 2.5em;	
	}
	.hero .slide { background-size: cover !important; }
}

@media screen and (min-width: 960px) {
	.hero h1 {
		font-size: 3em;	
	}			
}

@media screen and (min-width: 1200px) {
	.hero h1 {
		font-size: 3.5em;	
	}		
}

.hero ul {
	list-style-type: none;
	margin: 0;
	padding: 0;	
}

.hero li {
	display: block;	
	font-weight: 300;
	letter-spacing: 0.05em;
	margin: 0 0.625em 2.125em;
	text-transform: uppercase;
}

@media screen and (min-width: 480px) {
	.hero li {
		display: inline-block;
		margin: 0 0.625em;	
	}
}

.hero li a, a.btn {
	background-color: #18a9d5;
	border-radius: 5px;
	font-weight: 700;
	padding: 0.875em 1.25em;
	color: #fff;
	cursor: pointer;
	text-decoration: none;	
	transition: background-color 0.3s ease;	
}

.hero li a:hover, .hero li a:focus,
a.btn:hover, a.button:focus {
	background-color: #0c8dc4;	
}

@media screen and (min-width:44em) {
    .hero .container,
	.hero.hero--home .slide, 
	.hero:after, {
        height: 420px
    }
	
	.hero.hero--sub .container {
		height: 420px;	
	}
}

@media screen and (min-width:64em) {
    .hero .container, 
	.hero.hero--home .slide,
	.hero:after {
        height: 520px
    }
	
	.hero.hero--sub .container {
		height: 420px;	
	}	
}

.hero.hero--home .owl-prev,
.hero.hero--home .owl-next {
	display: none;
}

.hero.hero--home .owl-dots {
	padding: 0.625em 0;
	position: absolute;
	bottom: 0;
	width: 100%;
	z-index: 2	
}

.featured-shows h2 {
	font-size: 2.25em;
	font-weight: 900;
	letter-spacing: 0.05em;
	margin-bottom: 1em;
	text-align: center;
	text-transform: uppercase;	
}

#events-carousel img {
	display: block;
	margin-bottom: 1.25em;	
}

#events-carousel .headliner {
	display: block;
	font-family: 'Oswald', sans-serif;
	font-size: 1.25em;
	font-weight: 400;
	letter-spacing: 0.03em;	
}

#events-carousel .supporting-wrap {
	padding-top: 0.35em;	
}

#events-carousel .supporting-act {
	display: block;
	font-family: 'Oswald', sans-serif;
	font-size: 1em;
	font-weight: 400;	
	letter-spacing: 0.05em;
	margin-bottom: 0.25em;
}

#events-carousel .date,
#events-carousel .time {
	color: #7f7f7f;
	display: block;
	font-size: 0.875em;
	font-weight: 300;	
}

#events-carousel .date {
	margin-bottom: 0.35em;	
}

#events-carousel .meta {
	border-top: 1px solid #f2f2f2;
	border-bottom: 1px solid #f2f2f2;
	margin: 0.7em 0 0.35em;
	padding: 0.35em 0;	
}

#events-carousel .fa {
	color: #25a6dd;
	display: inline-block;
	margin-right: 0.25em;		
}

.owl-nav {
	overflow: hidden;
	width: 100%;	
}

.owl-nav .fa {
	color: #000!important;	
	font-size: 1.875em;	
}

.owl-prev {
	cursor: pointer;
	float: left;	
	margin-top: 1.6875em;
}

.owl-next {
	cursor: pointer;
	float: right;
	margin-top: 1.6875em;
}

.owl-dots {
	margin-top: -1.6875em;
	text-align: center;	
}

.owl-dot {
	background-color: #fff;
	border: 1px solid #ccc;
	border-radius: 50%;
	display: inline-block;
	margin: 0 0.3125em;
	width: 14px;
	height: 14px;	
}

.owl-dot.active {
	background-color: #25a6dd;	
}

.upcoming-events {
	background: transparent url('img/wood-texture.jpg') top center repeat-x;
	color: #fff;
	padding: 2.5em 0;	
}

@media screen and (min-width: 1024px) {
	.upcoming-events {
		background-image: url(img/astronaut.png), url(img/wood-texture.jpg);
		background-repeat: no-repeat, repeat-x;
		background-position: 4% 100%, top center;	
	}
}

.upcoming-events .col-1-3 {
	margin-bottom: 1.875em;
}	
	
@media screen and (min-width: 800px) {
	.upcoming-events .col-1-3 {
		float: left;
		margin-bottom: 0;
		margin-right: 2.941176470588235%;
		width: 31.37254901960784%;
	}	
}

.upcoming-events .col-1-3 > h3,
.upcoming-events .col-2-3 > h3 {
	font-size: 1.875em;
	letter-spacing: 0.05em;
	margin-bottom: 1em;
	text-transform: uppercase;	
}

.upcoming-events .col-1-3 .list-view-item {
	border: none;
	border-bottom: 1px dotted #333;
	margin: 0;
	padding: 1.25em 0;	
}

@media screen and (min-width: 768px) {
	.upcoming-events .col-1-3 .list-view-item {
		padding: 1.875em 1.25em;	
	}
}

.upcoming-events .col-1-3 .list-view-item:first-child {
	padding-top: 0;	
}

.upcoming-events .col-1-3 .list-view-details {
	float: none;
	max-width: none;	
}

.upcoming-events .col-1-3 .list-view-details a {
	color: #fff;
	text-decoration: none;	
}

.upcoming-events .col-1-3 .list-view-details .headliners {
	font-size: 1.25em;	
	line-height: 1.2;
}

.upcoming-events .col-1-3 .list-view-details .supports {
	font-size: 1.125em;
	font-weight: 400;	
	line-height: 1.5;
}

.upcoming-events .col-1-3 .list-view-details .dates {
	color: #bbb;
	font-family: 'Open Sans', sans-serif;
	font-size: 1em;
	font-weight: 300;	
	line-height: 1.5;
}

@media screen and (min-width: 800px) {
	.upcoming-events .col-2-3 {
		float: left;
		width: 62.74509803921569%;
	}
}

.upcoming-events .col-2-3 .list-view-item {
	border: none;
	border-bottom: 1px solid #333;
	margin: 0;
	padding: 1.25em 0;	
}

@media screen and (min-width: 768px) {
	.upcoming-events .col-2-3 .list-view-item {
		padding: 1.875em 1.25em;	
	}	
}

.upcoming-events .col-2-3 .list-view-item > a {
	display: block;
	float: none;
	margin: 0;
}

.upcoming-events .col-2-3 .list-view-item img {
	display: block;
	margin-bottom: 1.25em;
	width: 100%;
	height: auto;	
}

@media screen and (min-width: 768px) {
	.upcoming-events .col-2-3 .list-view-item > a {
		float: left;
		margin: 0;
		width: 20%;
	}
	
	.upcoming-events .col-2-3 .list-view-item img {
		display: block;
		margin: 0;
		width: 100%;
		height: auto;
	}		
}

.upcoming-events .col-2-3 .list-view-details {
	float: none;
	max-width: none;
	width: 100%;
}

@media screen and (min-width: 768px) {
	.upcoming-events .col-2-3 .list-view-details {
		float: left;
		padding-left: 1.875em;	
		width: 60%;
	}		
}

.upcoming-events .col-2-3 .list-view .ticket-price {
	float: none;
	max-width: none;
	padding-top: 0;
	width: 100%;	
}

@media screen and (min-width: 768px) { 
	.upcoming-events .col-2-3 .list-view .ticket-price {
		float: right;
		padding-left: 1.875em;
		width: 20%;
	}
}


/*.upcoming-events .col-2-3 .list-view-details {
	float: none;
	max-width: none;
	width: 100%;
}

.upcoming-events .col-2-3 .list-view .ticket-price {
	float: none;
	margin-top: 1.25em;
	max-width: 140px;
}

@media screen and (min-width: 48em) {
	.upcoming-events .col-2-3 .list-view-details {
		float: left;
		max-width: 45%;
		padding-left: 0.625em;
	}	
	
	.upcoming-events .col-2-3 .list-view .ticket-price {
		float: right;
		margin-top: 0;
		max-width: none;
	}	
}*/

.upcoming-events .col-2-3 .list-view-details a {
	color: #fff;
	text-decoration: none;	
}

.upcoming-events .col-2-3 .list-view-details .headliners {
	font-size: 1.5em;	
	line-height: 1.2;
}

.upcoming-events .col-2-3 .list-view-details .supports {
	font-size: 1.25em;
	font-weight: 400;	
	line-height: 1.5;
}

.upcoming-events .col-2-3 .list-view-details .dates {
	color: #bbb;
	font-family: 'Open Sans', sans-serif;
	font-size: 1.125em;
	font-weight: 300;	
	line-height: 1.5;
}

.upcoming-events .list-view-item .free {
	background: #60538b;
	color: #FFF;
	border-radius: 5px;
	letter-spacing: 0.05em;
	padding: 0.625em;		
}

.upcoming-events .list-view-item .tickets {
	/*background: #ef4231;*/
	background: #b576ad;
	border-radius: 5px;
	color: #fff;
	letter-spacing: 0.05em;
	padding: 0.625em;			
	text-decoration: none;
	transition: background-color 0.3s ease;
}

.upcoming-events .list-view-item .tickets:hover,
.upcoming-events .list-view-item .tickets:focus {
	background-color: #82437a;	
}

.upcoming-events .list-view-item .postponed,
.upcoming-events .list-view-item .rescheduled,
.upcoming-events .list-view .custom {
	background: #0090a8;	
	border-radius: 5px;
	color: #fff;
	letter-spacing: 0.05em;	
	padding: 0.625em;		
	text-decoration: none;		
}

.upcoming-events .list-view .future-sale {
	background: #41b1fc;
	border-radius: 5px;
	color: #fff;
	letter-spacing: 0.05em;	
	padding: 0.625em;		
	text-decoration: none;	
}

.upcoming-events .list-view .future-sale a,
.upcoming-events .list-view .custom a {
	border: none;
	color: #fff;	
	text-decoration: none;	
	width: 100%!important;
	padding: 0!important;
}

.upcoming-events .list-view .custom,
.upcoming-events .list-view .future-sale {	
	transition: background 0.3s ease;
}

.upcoming-events .list-view .future-sale:hover,
.upcoming-events .list-view .future-sale:focus,
.upcoming-events .list-view .custom:hover,
.upcoming-events .list-view .custom:focus {
	background: #0090a8;	
}

.upcoming-events .list-view-item .sold-out,
.upcoming-events .list-view-item .cancelled,
.upcoming-events .list-view-item .postponed,
.upcoming-events .list-view .tickets-at-the-door,
.upcoming-events .list-view .on-sale-soon {
	background-color: #6b645c;
	border-radius: 5px;
	color: #fff;
	letter-spacing: 0.05em;	
	padding: 0.625em;			
}

.upcoming-events .list-view .ticket-link a, 
.upcoming-events .list-view .sold-out, 
.upcoming-events .list-view .cancelled, 
.upcoming-events .list-view .postponed, 
.upcoming-events .list-view .free, 
.upcoming-events .list-view .tickets-at-the-door, 
.upcoming-events .list-view .future-sale, 
.upcoming-events .list-view .on-sale-soon, 
.upcoming-events .list-view .custom {
	border: none!important;
	line-height: 1.25;
	width: auto!important;	
	min-width: 140px!important;
	max-width: 140px!important;
}

.newsletter {
	background: #24a9e1 url('img/newsletter-texture.jpg') repeat-x;
	padding: 1.875em 0;	
}

.newsletter .container {
	position: relative;	
}

.specials, .featured-shows {
	background-color: #fff;
	padding: 2.5em 0;	
}

.specials h2 {
	font-size: 2.25em;
	font-weight: 900;
	margin-bottom: 1em;
	text-align: center;
	text-transform: uppercase;	
}

.specials .col-1-3 {
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1.875em;	
	opacity: 0;
	width: 100%;
	max-width: 350px;
}

/*#specials.is-active .col-1-3 {
	transform: translateY(40px);
	-moz-animation: stagger 0.8s ease forward;
	-webkit-animation: stagger 0.8s ease forward;
	-o-animation: stagger 0.8s ease forward;	
	animation: stagger 0.8s ease forwards;
}

#specials.is-active .col-1-3:nth-child(1) {
    animation-delay: 0.1s;
}

#specials.is-active .col-1-3:nth-child(2) {
    animation-delay: 0.2s;
}

#specials.is-active .col-1-3:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes stagger {
	to {
		opacity: 1;
		transform: translateY(0); 		
	}
}*/

@media screen and (min-width: 30em) {
	.specials .col-1-3 {
		float: left;
		margin-right: 2.941176470588235%;
		width: 48.52941176470588%;
	}	
	
	.specials .col-1-3:nth-child(2n) {
		margin-right: 0;	
	}
}

@media screen and (min-width: 50em) {
	.specials .col-1-3 {
		width: 31.37254901960784%;
	}
	
	.specials .col-1-3:nth-child(2n) {
		margin-right: 2.941176470588235%;	
	}
	
	.specials .col-1-3:nth-child(3n) {
		margin-right: 0;	
	}	
}

.specials img {
	display: block;	
}

.special {
	border-color: #f2f2f2;
	border-width: 0 1px 1px 1px;
	border-style: solid;
	padding: 1.875em 8.571428571428571%;	
}

.specials .col-1-3:after {
	content: "";
	border-color: #f2f2f2;
	border-width: 0 1px 1px 1px;
	border-style: solid;	
	display: block;
	width: 97%;
	height: 5px;	
	margin: 0 auto;
}


/*--------------------------------------------------------------
1.0 - Subpage
--------------------------------------------------------------*/
#main {
	background-color: #fff;
	padding-bottom: 2.5em;
}

#main.menu-main {
	padding-bottom: 0;	
}

#main .banner {
	background-color: #f2f2f2;
    -webkit-box-shadow: inset 0 6px 6px -6px rgba(0,0,0,0.2);
    -moz-box-shadow: inset 0 6px 6px -6px rgba(0,0,0,0.2);	
	box-shadow: inset 0 6px 6px -6px rgba(0,0,0,0.2);		
	padding-bottom: 31.3%;
	min-height: 200px;
	max-height: 600px;
}

#main .banner--404 {
	background-image:url(img/404.jpg);
	background-position:center;
	background-size:cover;
    -webkit-box-shadow: inset 0 6px 6px -6px rgba(0,0,0,0.2);
    -moz-box-shadow: inset 0 6px 6px -6px rgba(0,0,0,0.2);	
	box-shadow: inset 0 6px 6px -6px rgba(0,0,0,0.2);	
}

.generic article {
	padding: 1.875em 0 0;	
}

.generic article ul,
.generic article ol {
	margin-left: 2em;	
}

.generic aside {
	margin-top: 1.875em;
	padding: 1.875em 0;
	min-height: 600px;	
}

.generic aside section {
	padding-bottom: 1.875em;	
}

.generic aside h3 {
	border-bottom: 2px solid #24a9e1;
	padding-bottom: 0.35em;	
}

.generic aside .list-view-item {
	border: none;
	border-bottom: 1px dotted #ddd;
	margin: 0;
	padding: 1.25em 0;	
}

@media screen and (min-width: 48em) {
	.generic aside .list-view-item {
		padding: 1.875em 0;	
	}
}

.generic aside .list-view-item:first-child {
	padding-top: 0;	
}

.generic aside .list-view-details {
	float: none!important;
	max-width: none!important;	
	padding: 0!important;
	width: 100%!important;
}

.generic aside .list-view-details a {
	color: #161616;
	text-decoration: none;	
}

.generic aside .list-view-details .headliners {
	font-size: 1.125em!important;	
	line-height: 1.2;
}

.generic aside .list-view-details .supports {
	font-size: 1em!important;
	font-weight: 400;	
	line-height: 1.5;
}

.generic aside .list-view-details .dates {
	color: #343434;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.875em!important;
	font-weight: 300;
	line-height: 1.5;	
}

@media screen and (min-width: 768px) {
	#main {
		padding-bottom: 3.75em;
	}
	
	.generic article {
		width: 66.666666%;
		padding: 2.5em 2.5em 2.5em 0;
		float: left;
	}
	
	.generic.menu article {
		width: 100%;
		float: none;	
	}
		
	.generic aside {
		background: rgb(250,250,250);
		background: -moz-linear-gradient(left,  rgba(250,250,250,1) 0%, rgba(255,255,255,1) 100%);
		background: -webkit-linear-gradient(left,  rgba(250,250,250,1) 0%,rgba(255,255,255,1) 100%);
		background: linear-gradient(to right,  rgba(250,250,250,1) 0%,rgba(255,255,255,1) 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fafafa', endColorstr='#ffffff',GradientType=1 );	
		border-left: 1px solid #ddd;
		box-shadow: inset 7px 0 9px -11px rgba(0,0,0,0.30);
		float: right;
		padding-left: 1.875em;
		width: 33.333333%;
	}
	
	.generic article p, .generic article ul, .generic article ol, .generic article dl {
		font-size: 1.125em;	
	}
	
	.generic article h1 {
		font-size: 2.75em
	}
	
	.generic article h2 {
		font-size: 2.25em
	}
	
	.generic article h3 {
		font-size: 1.75em
	}
	
	.generic article h4 {
		font-size: 1.25em
	}
	
	.generic article h5 {
		font-size: 0.75em
	}
	
	.generic article h6 {
		font-size: 0.25em
	}		
}

.sidebar-section .menu {
	list-style-type: none;
	margin: 0;
	padding: 0;	
}

.sidebar-section .menu li {
	border-top: 1px solid #f2f2f2;
}

.sidebar-section .menu li:first-child {
	border-top: none;
}	

.sidebar-section .menu li a {
	color: #161616;
	display: block;
	padding: 0.5em 0.625em;	
	text-decoration: none;
}

.sidebar-section .menu li.current-menu-item a,
.sidebar-section .menu li a:hover,
.sidebar-section .menu li a:focus {
	color: #41b1fc;	
}

.sidebar-section .menu li.current-menu-item a {
	font-weight: 700;
}

/*--------------------------------------------------------------
1.0 - Calendar
--------------------------------------------------------------*/
.calendar-views {
	list-style-type: none;
	margin: 0;
	overflow: hidden;		
}

.generic .calendar-views {
	font-size: 16px;
	font-size: 1rem;
	margin-bottom: 0.875em;	
	margin-left: 0!important;
}

.calendar-views i {
	font-size: 1.125em;		
	margin-right: 0.3125em;
}

.calendar-views i.fa-calendar {
	position: relative;
	top: -3px;	
}

.calendar-views li {
	float: left;
	margin-right: 1.25em;
}

.calendar-views a {
	color: #000;	
	text-decoration: none;
}

.calendar-views a:hover,
.calendar-views a:focus,
.calendar-views .selected a {
	color: #41b1fc;
}

#dsc-calendar {
	padding: 2.5em 0;	
}

#dsc-calendar .tfly-calendar table tr td {
	border: 1px solid #1c1c1c;
	padding: 0;
}

#dsc-calendar .tfly-calendar table tr td.data {
	border: 1px solid #1c1c1c;
	padding: 0.3125em;
}

#dsc-calendar .tfly-calendar h3.start-time {
	display: block;	
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: 300;
	margin-bottom: 0.625em;
}

#dsc-calendar .tfly-calendar h3.month {
	background: #000;
	color: #fff;
	font-size: 24px;
	font-size: 1.5em;
	letter-spacing: 0.05em;
	margin: 0;
	padding: 0.5em 0.625em;
	text-transform: uppercase;
}

#dsc-calendar .tfly-calendar h5.date,
#dsc-calendar .tfly-calendar h2.venue,
#dsc-calendar .tfly-calendar h2.supports {
	font-family: 'Oswald', sans-serif;
	font-size: 14px;
	font-size: 0.875rem;
}

#dsc-calendar .tfly-calendar h2.supports {
	border-bottom: 1px dotted #aaa;	
	padding-bottom: 0.5714285714285714em;		
}

#dsc-calendar .tfly-calendar h5.date,
#dsc-calendar .tfly-calendar h2.supports,  
#dsc-calendar .tfly-calendar h2.venue {
	font-weight: 300;
}

#dsc-calendar .tfly-calendar h5.date {
	background-color: #fff;
	border-top: 2px solid #000;
	border-bottom: 2px solid #000;
	color: #000;
	letter-spacing: 0.05em;
	margin-bottom: 0.4166666666666667em;
	padding: 0.5em;
	text-transform: uppercase;
}

#dsc-calendar .tfly-calendar h1.headliners {
	border-bottom: 1px dotted #aaa;
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.375;
	margin: 0 0 0.5em;
	padding: 0 0 0.5em;
}

#dsc-calendar .tfly-calendar h2.supports,  
#dsc-calendar .tfly-calendar h2.venue {
	margin: 0 0 0.5em 0;
	text-transform: none;
}

#dsc-calendar .tfly-calendar h2.venue {
	border-top: 1px solid #333;
	border-bottom: 1px solid #333;
	font-style: italic;
	margin: 0 0 0.8333333333333333em 0;
	padding: 0.75em 0 0.6666666666666667em 0;
}

#dsc-calendar .tfly-calendar h1.headliners a,  
#dsc-calendar .tfly-calendar h2.supports a {
	color: #161616;
	text-decoration: none;
}

#dsc-calendar .tfly-calendar .ticket-link a,  
#dsc-calendar .tfly-calendar .sold-out,  
#dsc-calendar .tfly-calendar .custom,  
#dsc-calendar .tfly-calendar .rescheduled,  
#dsc-calendar .tfly-calendar .off-sale,  
#dsc-calendar .tfly-calendar .cancelled,  
#dsc-calendar .tfly-calendar .postponed, 
#dsc-calendar .tfly-calendar .free,  
#dsc-calendar .tfly-calendar .tickets-at-the-door,  
#dsc-calendar .tfly-calendar .future-sale a,  
#dsc-calendar .tfly-calendar .on-sale-soon {
	font-family: 'Oswald', sans-serif;
	font-size: 12px;
	font-size: 0.75rem;
	font-weight: 700;
	line-height: 1.5;
	padding: 0.875em 0.625em;
	width: auto!important;
	max-width: 100%!important;
	text-align: center;
}

#dsc-calendar .tfly-calendar h3.sold-out,
#dsc-calendar .tfly-calendar h3.rescheduled,
#dsc-calendar .tfly-calendar h3.free,
#dsc-calendar .tfly-calendar h3.tickets-at-the-door,
#dsc-calendar .tfly-calendar h3.ticket-link a,
#dsc-calendar .tfly-calendar h3.future-sale a,  
#dsc-calendar .tfly-calendar h3.custom,
#dsc-calendar .tfly-calendar h3.custom a  {
	border-radius: 5px;
	color: #FFF;	
}

#dsc-calendar .tfly-calendar h3.ticket-link a,
#dsc-calendar .tfly-calendar h3.future-sale a,  
#dsc-calendar .tfly-calendar h3.custom,
#dsc-calendar .tfly-calendar h3.custom a {
	text-decoration: none;	
}

#dsc-calendar .tfly-calendar h3.sold-out,
#dsc-calendar .tfly-calendar h3.cancelled,
#dsc-calendar .tfly-calendar h3.postponed,
#dsc-calendar .tfly-calendar h3.tickets-at-the-door,
#dsc-calendar .tfly-calendar h3.on-sale-soon,
#dsc-calendar .tfly-calendar h3.off-sale {
	background-color: #6b645c;
	border: none;
	color: #fff;	
	font-weight: 400;
	letter-spacing: 0.08em;
}

#dsc-calendar .tfly-calendar h3.free {
	background: #60538b;
	border: none;
	color: #FFF;
	font-weight: 400;
	letter-spacing: 0.08em;
}

#dsc-calendar .tfly-calendar h3.ticket-link a {
	background: #b576ad;
	border: none;
	color: #fff;
	font-weight: 400;
	letter-spacing: 0.08em;
	transition: background 0.3s ease;
}

#dsc-calendar .tfly-calendar h3.ticket-link a:hover,
#dsc-calendar .tfly-calendar h3.ticket-link a:focus {
	background: #82437a;	
}

#dsc-calendar .tfly-calendar h3.postponed,
#dsc-calendar .tfly-calendar h3.rescheduled,
#dsc-calendar .tfly-calendar h3.custom {
	background: #0090a8;	
	border: none;
	color: #fff;
	font-weight: 400;
	letter-spacing: 0.08em;	
}

#dsc-calendar .tfly-calendar h3.future-sale a {
	background: #41b1fc;
	border: none;
	color: #fff;
	font-weight: 400;
	letter-spacing: 0.08em;
	transition: background 0.3s ease;	
}

#dsc-calendar .tfly-calendar h3.future-sale a:hover,
#dsc-calendar .tfly-calendar h3.future-sale a:focus {
	background: #0e7ec9;
}

#dsc-calendar .tfly-calendar h2.age-restriction {
	color: #aaa;
	font-family: 'Oswald', sans-serif;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: 300;
	line-height: 1.375;
	margin: 1em 0;
	text-transform: none;
	
	display: none;
}

#dsc-calendar .calendar-image {
	display: block;
	margin: 0 0 0.4375em 0;
}

#dsc-calendar .tfly-calendar .calendar-sync {
	padding-bottom: 0.625em;
}

/*--------------------------------------------------------------
1.0 - EDP
--------------------------------------------------------------*/
.generic .list-view-item {
	border: none;
	border-bottom: 1px solid #ccc;
	margin: 0 0 1.25em;
	padding: 1.25em 0;	
	position: relative;
}

.generic .list-view-item > a {
	display: block;
	float: none;
	margin: 0;
}

.generic .list-view-item img {
	display: block;
	margin-bottom: 1.25em;
	width: 100%;
	height: auto;	
}

@media screen and (min-width: 768px) {
	.generic .list-view-item > a {
		float: left;
		margin: 0;
		width: 20%;
	}
	
	.generic .list-view-item img {
		display: block;
		margin: 0;
		width: 100%;
		height: auto;
	}		
}

.generic .list-view-details {
	float: none;
	max-width: none;
	width: 100%;
}

@media screen and (min-width: 768px) {
	.generic .list-view-details {
		float: left;
		padding-left: 1.875em;	
		width: 60%;
	}		
}

.generic .list-view .ticket-price {
	float: none;
	max-width: none;
	padding-top: 1.25em;
	width: 100%;	
}

@media screen and (min-width: 768px) { 
	.generic .list-view .ticket-price {
		float: right;
		padding-left: 1.875em;
		width: 20%;
	}
}

.generic .list-view .ticket-price h3 {
	font-size: 1em!important;	
}

@media screen and (min-width: 768px) {
	.generic .list-view .ticket-price h3 {
		font-size: 1.125em!important;	
	}
}

.generic .list-view .price-range,
.generic .list-view .rescheduled {
	text-align: left;	
}

.generic .list-view .list-view-details a {
	color: #000;
	text-decoration: none;	
}

.generic .list-view .list-view-details .headliners {
	font-size: 1.5em;	
	line-height: 1.2;
}

.generic .list-view .list-view-details .supports {
	font-size: 1.25em;
	font-weight: 400;	
	line-height: 1.5;
}

.generic .list-view .list-view-details .dates,
.generic .list-view .list-view-details .times {
	color: #000;
	font-family: 'Open Sans', sans-serif;
	font-size: 1.125em;
	font-weight: 300;	
	line-height: 1.5;
}

.generic .list-view .ticket-price {
	font-size: 16px;
	font-size: 1rem;	
}

.generic .list-view-item .free {
	background: #c8db4d;
	border-radius: 5px;
	letter-spacing: 0.05em;
	padding: 0.625em;		
}

.generic .list-view-item .tickets {
	/*background: #ef4231;*/
	background: #b576ad;
	border-radius: 5px;
	color: #fff;
	letter-spacing: 0.05em;
	padding: 0.625em;			
	text-decoration: none;
	transition: background-color 0.3s ease;
}

.generic .list-view-item .tickets:hover,
.generic .list-view-item .tickets:focus {
	background-color: #82437a;	
}

.generic .list-view-item .postponed,
.generic .list-view-item .rescheduled,
.generic .list-view .custom {
	background: #0090a8;	
	border-radius: 5px;
	color: #fff;
	letter-spacing: 0.05em;	
	padding: 0.625em;		
	text-decoration: none;		
}

.generic .list-view .future-sale {
	background: #41b1fc;
	border-radius: 5px;
	color: #fff;
	letter-spacing: 0.05em;	
	padding: 0.625em;		
	text-decoration: none;	
}

.generic .list-view .future-sale a,
.generic .list-view .custom a {
	border: none;
	color: #fff;	
	text-decoration: none;	
	width: 100%!important;
	padding: 0!important;
}

.generic .list-view .custom,
.generic .list-view .future-sale {	
	transition: background 0.3s ease;
}

.generic .list-view .future-sale:hover,
.generic .list-view .future-sale:focus,
.generic .list-view .custom:hover,
.generic .list-view .custom:focus {
	background: #0090a8;	
}

.generic .list-view-item .sold-out,
.generic .list-view-item .cancelled,
.generic .list-view-item .postponed,
.generic .list-view .tickets-at-the-door,
.generic .list-view .on-sale-soon {
	background-color: #6b645c;
	border-radius: 5px;
	color: #fff;
	letter-spacing: 0.05em;	
	padding: 0.625em;			
}

.generic .list-view .ticket-link a, 
.generic .list-view .sold-out, 
.generic .list-view .cancelled, 
.generic .list-view .postponed, 
.generic .list-view .free, 
.generic .list-view .tickets-at-the-door, 
.generic .list-view .future-sale, 
.generic .list-view .on-sale-soon, 
.generic .list-view .custom {
	border: none!important;
	line-height: 1.25;
	width: auto!important;	
	min-width: 140px!important;
	max-width: 140px!important;
}

@media screen and (min-width: 768px) {
	.generic .list-view .ticket-link a, 
	.generic .list-view .sold-out, 
	.generic .list-view .cancelled, 
	.generic .list-view .postponed, 
	.generic .list-view .free, 
	.generic .list-view .tickets-at-the-door, 
	.generic .list-view .future-sale, 
	.generic .list-view .on-sale-soon, 
	.generic .list-view .custom {
		min-width: 0!important;
		max-width: 100%!important;
	}		
}

.generic .end {
	overflow: hidden;
	padding: 1.25em 0;	
}

.generic ul.pages {
	border-left: 1px solid #ccc;
	font-size: 16px;
	font-size: 1rem;
	line-height: 1;
	margin: 0;
	overflow: hidden;
	padding: 0;
	text-align: center;
}

.generic ul.pages li {
	border-style: solid;
	border-color: #ccc;
	border-width: 1px 1px 1px 0;
	float: left;
	margin: 0!important;
	padding: 0!important;	
}

.generic ul.pages li a {
	color: #000;
	display: block;
	padding: 0.75em;	
	text-decoration: none;
}

.generic ul.pages li a:hover,
.generic ul.pages li a:focus,
.generic ul.pages li.selected a {
	background-color: #41b1fc;
	color: #fff;	
}



/*--------------------------------------------------------------
1.0 - Full Width Pages
--------------------------------------------------------------*/
#fullwidth {
	background: #FFF;
	padding:  0 0 40px;
	overflow: hidden;
}
#fullwidth h1, #fullwidth h2, 
#fullwidth h3, #fullwidth h4 { display: block; margin: 30px auto 15px; text-align: center; }

#fullwidth .text, #fullwidth span.text { width: 100%; max-width: 1100px; padding: 1%; margin: 1% auto; display: block; }
#fullwidth img { width: 100%; margin: 0 auto 5px; height: auto; display: block;}

.half {
    display: block;
    float: left;
    padding: 2%;
    vertical-align: top;
    width: 50%;
}

#fullwidth.members-only {
	background: url('img/membersonly-bg.jpg') repeat top left; 
	padding:  0px 0 40px;
	overflow: hidden;
	color: #FFF;
}
#fullwidth.members-only img { margin: 50px 0; }


/*--------------------------------------------------------------
1.0 - Galleries
--------------------------------------------------------------*/
aside.format-gallery {overflow:auto;}

p.gallery {font-size:1em;color: #666;}
div.gallery-thumb-wrap {
    margin: 0;
    padding: 1% 1% 1% 1%;
    width: 33%;
    display: inline-block;
    vertical-align: top;
}
h4.gallery-title a{
    font-size: 20px;
    line-height: 22px;
    margin: 10px 0 5px;
    text-decoration: none;
}
a.gallery-thumb {
    background: #000 none repeat scroll 0 0;
    border: 2px solid #ededed;
    display: block;
    height: 200px;
    margin: 0 auto 10px;
    overflow: hidden;
}
a.gallery-thumb:hover { border-color: #111; }
p.gallery-text a{
    color: #999999;
    font-style: italic;
    font-size: 13px;
    margin: 5px 0 0;
    line-height: 15px;
    text-decoration: none;
}

.gallery-item {
    display: inline-block;
    margin: 0 1% 2%;
    max-width: 31%;
    padding: 0;
    text-align: center;
    vertical-align: top;
    width: 100%;
}
.gallery-icon img {
    border: 1px solid #EDEDED !important;
    display: block;
    margin: 10px auto;
}
.gallery-icon img:hover { border-color: #111; }
.gallery-caption {font-size: 0.9em; line-height: 1.1;}

#fancybox-title-over { display: none !important; }

/*--------------------------------------------------------------
1.0 - EDP
--------------------------------------------------------------*/
#edp-wrap .event-detail {
	overflow: hidden;
	padding: 0;
}

#edp-wrap .event-detail .event-info {
	margin: 0;
	padding: 0 0 1.875em;
}

#edp-wrap .event-detail .event-info .event-status-message {
	color: #888;
	font-size: 0.875em;
	font-weight: 300;
	margin-bottom: 1em;		
}

#edp-wrap .event-detail .event-info h1.headliners {
	line-height: 1.2;
	margin-bottom: 0.5em;	
}

#edp-wrap .event-detail .event-info h2.supports {
	line-height: 1.5;
	margin-bottom: 0.35em;	
}

#edp-wrap .event-detail img {
	display: block;
	float: none;
	margin: 0 0 1.25em 0;
	max-width: 100%;
	height: auto;
}

@media screen and (min-width: 600px) {
	#edp-wrap .event-detail .event-info {
		float: left;
		padding-right: 1.25em;
		width: 71.428571429%;
		max-width: 500px;
	}
	#edp-wrap .event-detail img {
		float: right;
		width: 28.571428571%;
		margin: 0;
	}
}

#edp-wrap .event-detail .list-view-show-meta {
	margin: 0.8125em 0;	
}

#edp-wrap .event-detail .topline-info {
	display: none;	
}

#edp-wrap .event-detail .dates {
	color: #161616;
	position: relative;
	top: auto;
	left: auto;
	padding: 0;
	width: auto;
	height: auto;
	text-align: left;
}

#edp-wrap .event-detail .artist-boxes {
	clear: both;	
}

#edp-wrap .event-detail .artist-headline {
	font-family: 'Oswald', sans-serif;
	font-size: 1.125em;
	margin-bottom: 0.35em;	
}

#edp-wrap .event-detail .artist-boxes ul.links {
	font-weight: 300;
	margin: 0 0 1.375em;
	padding: 0;
}

#edp-wrap .event-detail .artist-boxes ul.links li {
	background: none;
	font-weight: 300;
	list-style-type: none;
	margin: 0 0.625em 0 0;
	padding: 0;
}

#edp-wrap .artist-box-headliner, 
#edp-wrap .artist-box-support, 
#edp-wrap .venue-info {
	border-top: 1px dotted #aaa;
	padding: 1.5625em 0 0 0;
}

#edp-wrap .artist-name {
	font-size: 1.25em;
	margin-bottom: 0.35em;	
}

#edp-wrap .event-detail .additional-event-info,
#edp-wrap .event-detail h2.venue, 
#edp-wrap .event-detail h2.city-state {
	color: #161616;	
}


#edp-wrap .event-detail h2.additional-event-info,
#edp-wrap .event-detail h2.additional-event-info > * {
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	font-size: 1rem;
	font-weight: 300!important;
	line-height: 1.5;
	margin: 1.3125em 0;
	padding: 0;
	text-transform: none!important;
}

#edp-wrap .event-detail h3.postponed,  
#edp-wrap .event-detail h3.cancelled,  
#edp-wrap .event-detail h3.rescheduled,  
#edp-wrap .event-detail h3.off-sale,  
#edp-wrap .event-detail h3.sold-out,  
#edp-wrap .event-detail h3.tickets-at-the-door,  
#edp-wrap .event-detail h3.free,  
#edp-wrap .event-detail h3.ticket-link a,
#edp-wrap .event-detail h3.custom,  
#edp-wrap .event-detail h3.future-sale,
#edp-wrap .event-detail h2.venue, 
#edp-wrap .event-detail h2.city-state,
#edp-wrap .event-detail h4.share-text {
	font-size: 16px;
	font-size: 1rem;
	font-weight: 400;
	letter-spacing: 0.05em;
	line-height: 1.5;
	padding: 0.875em 0.625em;	
}

#edp-wrap .event-detail h3.future-sale {
	padding: 0;	
}

#edp-wrap .event-detail .free {
	background: #60538b;
	border-radius: 5px;
	letter-spacing: 0.05em;
	padding: 0.625em;		
}

#edp-wrap .event-detail .ticket-link a.tickets {
	/*background: #ef4231;*/
	background: #b576ad;
	border-radius: 5px;
	color: #fff;
	letter-spacing: 0.05em;
	padding: 0.625em;			
	text-decoration: none;
	transition: background-color 0.3s ease;
}

#edp-wrap .event-detail .ticket-link a.tickets:hover,
#edp-wrap .event-detail .ticket-link a.tickets:focus {
	background-color: #82437a;	
}

#edp-wrap .event-detail .postponed,
#edp-wrap .event-detail .rescheduled,
#edp-wrap .event-detail .custom {
	background: #0090a8;	
	border-radius: 5px;
	color: #fff;
	letter-spacing: 0.05em;	
	padding: 0.625em;		
	text-decoration: none;		
}

#edp-wrap .event-detail .sold-out,
#edp-wrap .event-detail .cancelled,
#edp-wrap .event-detail .postponed,
#edp-wrap .event-detail .tickets-at-the-door,
#edp-wrap .event-detail .on-sale-soon {
	background-color: #6b645c;
	border-radius: 5px;
	color: #fff;
	letter-spacing: 0.05em;	
	padding: 0.625em;			
}

#edp-wrap .event-detail .ticket-link a.tickets, 
#edp-wrap .event-detail .sold-out, 
#edp-wrap .event-detail .cancelled, 
#edp-wrap .event-detail .postponed, 
#edp-wrap .event-detail .free, 
#edp-wrap .event-detail .tickets-at-the-door, 
#edp-wrap .event-detail .future-sale, 
#edp-wrap .event-detail .on-sale-soon, 
#edp-wrap .event-detail .custom {
	border: none!important;
	line-height: 1.25;
	width: auto!important;	
	min-width: 140px!important;
	max-width: 140px!important;
}

#edp-wrap .event-detail .future-sale {
	background: #41b1fc;
	border-radius: 5px;
	color: #fff;
	letter-spacing: 0.05em;	
	padding: 0;
	text-decoration: none;	
}

#edp-wrap .event-detail .future-sale a,
#edp-wrap .event-detail .custom a {
	border: none;
	color: #fff;
	display: block;	
	text-decoration: none;	
	width: 100%!important;
	padding: 0.625em;!important;
}

#edp-wrap .event-detail .custom,
#edp-wrap .event-detail .future-sale {	
	transition: background 0.3s ease;
}

#edp-wrap .event-detail .future-sale:hover,
#edp-wrap .event-detail .future-sale:focus,
#edp-wrap .event-detail .custom:hover,
#edp-wrap .event-detail .custom:focus {
	background: #0090a8;	
}

#edp-wrap .event-detail h2.age-restriction {
	color: #5d5d5d;
	font-size: 16px;
	font-size: 1rem;
	font-weight: 400;
	letter-spacing: 0.05em;
	line-height: 1.375;
	margin: 1em 0;
	text-transform: uppercase;
}

#edp-wrap .event-detail h2.dates {
	border-top: 1px dotted #aaa;
	margin-top: 0.875em!important;
	padding-top: 0.875em;	
}

#edp-wrap .event-detail .ticket-price {
	border-bottom: 1px dotted #aaa;	
	padding-bottom: 0.75em;
}

#edp-wrap .event-detail h2.dates,
#edp-wrap .event-detail h2.times {
	font-size: 1.25em;
	font-weight: 300;
	text-align: left;
	text-transform: none;	
}

#edp-wrap .event-detail h2.dates {
	margin-top: 0.3571428571428571em;
	text-transform: none;
}

#edp-wrap .event-detail h2.venue, 
#edp-wrap .event-detail h2.city-state {
	font-weight: 300;
	margin: 0;
}

#edp-wrap .event-detail .bio,
#edp-wrap .event-info h2.dates,
#edp-wrap .event-info h2.times,
#edp-wrap .event-info h3.price-range {
	font-size: 1em;
	font-weight: 300;	
	line-height: 1.5;
}

@media screen and (min-width: 600px) {
	#edp-wrap .event-info h2.dates,
	#edp-wrap .event-info h2.times,
	#edp-wrap .event-info h3.price-range {
		font-size: 1.125em;	
	}
}

#edp-wrap .event-detail .bio-image-right {
	margin-bottom: 1.25em;	
	width: auto;
	max-width: none;
}

@media screen and (min-width: 600px) {
	#edp-wrap .event-detail .bio-image-right {
		margin-left: 1.25em;
		margin-bottom: 0.625em;	
	}	
}

#edp-wrap .event-detail h3.price-range {
	margin-bottom: 1em;
	text-align: left;
	text-transform: none;
}

#edp-wrap .event-detail h4.share-text {
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	margin: 0 0 1em!important;
	padding: 0.625em 0 0;
	text-align: left;
	text-transform: uppercase;
}

#edp-wrap .event-detail .sponsor-info {
	font-size: 14px;
	font-size: 0.875rem;	
	font-weight: 300;
}

#edp-wrap .event-detail .sponsor-info img {
	display: block;
	margin-top: 0.625em;
	width: auto;	
}

#edp-wrap .event-detail .ticket-price {
	float: none;
	margin-left: 0;
	margin-right: 0;
	width: auto;
	text-align: left;
}

#toolbox {
	padding-top: 0.9375em;
}

#edp-wrap .event-detail .times {
	margin-bottom: 0.5625em;
}

#edp-wrap .bio, 
#edp-wrap .venue-info {
	font-weight: 300;
	line-height: 1.5;
}

#edp-wrap .venue-info {
	clear: left;	
}

.fb_iframe_widget,
.fb_iframe_widget span,
.fb_iframe_widget iframe[style] {
	width: 100% !important;
	max-width: 100% !important;
}

#fbComments {
	clear: both;
	padding-top: 1.25em;
}

#edp-wrap .event-detail .headliners {
	font-size: 1.875em;
	font-weight: 700;
	line-height: 0.875;
	margin: 0 0 0.25em;
	padding: 0;
}

#edp-wrap .event-detail .supports {
	font-size: 1.25em;
	font-weight: 400;	
	line-height: 1.2;
	margin: 0;
	padding: 0;
}

#edp-wrap .event-detail .ticket-link a, 
#edp-wrap .event-detail .sold-out, 
#edp-wrap .event-detail .cancelled, 
#edp-wrap .event-detail .postponed, 
#edp-wrap .event-detail .free, 
#edp-wrap .event-detail .tickets-at-the-door,
#edp-wrap .event-detail .future-sale,
#edp-wrap .event-detail .on-sale-soon, 
#edp-wrap .event-detail .custom,
#edp-wrap .event-detail .rescheduled,
#edp-wrap .event-detail .off-sale {
	width: 100%;
	max-width: 180px!important;
	text-align: center;
}


/*--------------------------------------------------------------
1.0 - FAQs
--------------------------------------------------------------*/
ul.faq-list {
	list-style-type: none;
	margin-left: 0!important;
	padding: 0!important;	
}

.faq-list li {
	border-bottom: 1px solid #f2f2f2;	
}

.faq-list li a {
	display: block;
	padding: 0.625em;	
}

.faq-list li:nth-child(odd) a {
	background-color: #fafafa;	
}

section.faq {
	border-bottom: 1px solid #f2f2f2;
	padding: 1.875em 0;	
}

/*--------------------------------------------------------------
1.0 - Footer
--------------------------------------------------------------*/
.newsletter h4 {
	font-size: 1.875em;
	margin-top: 6px;
	margin-top: 0.375rem;
	text-align: center;
	text-transform: uppercase;	
}

.newsletter h4 span {
	color: #fff;
	display: block;	
}

@media screen and (min-width: 30em) {
	.newsletter h4 span {
		display: inline;	
	}
}

@media screen and (min-width: 60em) {
	.newsletter h4 {
		float: left;
		text-align: left;	
	}
	
	.newsletter .form {
		float: right;	
		min-width: 380px;
	}
}

.newsletter .form .tfly-email-subscribe-text,
.remodal .tfly-email-subscribe-text {
	border: none;
	border-radius: 10px;
	display: block;
	width: 100%;
	max-width: 400px;
	margin: 0 auto;
	padding: 0.875em;	
}

.remodal .tfly-email-subscribe-text {
	padding: 0.8125em 0.875em;
	width: 80%;
	max-width: none;	
}

.remodal .tfly-email-subscribe-text {
	border-width: 1px 0 1px 1px;
	border-style: solid;
	border-color: #ccc;	
}

@media screen and (min-width: 60em) {
	.newsletter .form .tfly-email-subscribe-text,
	.remodal .tfly-email-subscribe-text {
		-webkit-border-top-left-radius: 10px;
		-webkit-border-bottom-left-radius: 10px;
		-moz-border-radius-topleft: 10px;
		-moz-border-radius-bottomleft: 10px;
		border-top-left-radius: 10px;
		border-bottom-left-radius: 10px;			
		-webkit-border-top-right-radius: 0;
		-webkit-border-bottom-right-radius: 0;
		-moz-border-radius-topright: 0;
		-moz-border-radius-bottomright: 0;
		border-top-right-radius: 0;
		border-bottom-right-radius: 0;	
		float: left;
		margin: 0;
		max-width: 300px;		
	}
	
	.remodal .tfly-email-subscribe-text  {
		max-width: none;	
	}
}

.newsletter .form .tfly-email-subscribe-submit,
.remodal .tfly-email-subscribe-submit {
	background-color: #171717;
	border: none;
	border-radius: 10px;
	color: #fff;
	display: block;
	margin: 0.625em auto 0;
	padding: 0.875em;		
	transition: color 0.3s ease;	
}

.remodal .tfly-email-subscribe-submit {
	width: 20%;	
}

@media screen and (min-width: 60em) {
	.newsletter .form .tfly-email-subscribe-submit,
	.remodal .tfly-email-subscribe-submit {
		background-color: #171717;
		border: none;
		-webkit-border-top-right-radius: 10px;
		-webkit-border-bottom-right-radius: 10px;
		-moz-border-radius-topright: 10px;
		-moz-border-radius-bottomright: 10px;
		border-top-right-radius: 10px;
		border-bottom-right-radius: 10px;
		-webkit-border-top-left-radius: 0;
		-webkit-border-bottom-left-radius: 0;
		-moz-border-radius-topleft: 0;
		-moz-border-radius-bottomleft: 0;
		border-top-left-radius: 0;
		border-bottom-left-radius: 0;				
		color: #fff;
		display: inline-block;
		flaot: left;
		margin: 0;
		padding: 0.875em;			
		position: relative;
		left: -4px;
	}	
}

.newsletter .form .tfly-email-subscribe-submit:hover,
.newsletter .form .tfly-email-subscribe-submit:focus,
.remodal .tfly-email-subscribe-submit:hover,
.remodal .tfly-email-subscribe-submit:focus {
	color: #18a9d5;	
}

.footer-news {
	background-color: #0d0f12;
	color: #fff;
	padding: 2.5em 0;	
}

.footer-news p {
	font-size: 0.875em;	
}

.footer-news .col-1-3 {
	margin-bottom: 1.875em;	
}

@media screen and (min-width: 50em) {
	.footer-news .col-1-3 {
		float: left;
		margin-right: 2.941176470588235%;
		width: 31.37254901960784%;
	}
	
	.footer-news .col-1-3:nth-child(3n) {
		margin-right: 0;	
	}
	
	.footer-news .col-1-3:nth-child(2),
	.footer-news .col-1-3:nth-child(3) {
		padding-top: 2.8125em;
	}	
	
	.footer-news .col-1-3:nth-child(2) h3,
	.footer-news .col-1-3:nth-child(3) h3 {		
		margin-bottom: 27px;
		margin-bottom: 1.6875rem;
	}
}

.footer-social {
	padding: 2.5em 0;	
}

.footer-social ul {
	list-style-type: none;
	line-height: 1;
	margin: 0;
	padding: 0;	
	text-align: center;
}

@media screen and (min-width: 37.5em) {
	.footer-social ul {
		float: left;
		text-align: left;	
	}
}

.footer-social li {
	display: inline-block;	
	margin-right: 0.625em;
}

.footer-social li i {
	font-size: 1.125em;	
}

.footer-social li:last-child {
	margin-right: 0;	
}

.footer-social li a {
	background-color: #fff;
	border-radius: 50%;
	color: #000;
	display: block;
	line-height: 34px;
	width: 34px;
	height: 34px;
	text-align: center;
	transition: background-color 0.3s ease;
}

.footer-social li a:hover,
.footer-social li a:focus {
	background-color: #24a9e1;
}
	
.tfly-powered {
	margin-top: 1.375em;
	text-align: center;	
}

@media screen and (min-width: 37.5em) {
	.tfly-powered {
		float: right;
		margin-top: 0;
	}
}

.icon-ticketfly_powered_logo:before {
	color: #fff!important;	
}

.tfly-powered a, .tfly-powered a:hover {
	opacity: 1!important;
	text-decoration: none!important;
}	


/*--------------------------------------------------------------
Owl Carousel
--------------------------------------------------------------*/
.owl-carousel .animated {
	-webkit-animation-duration: 1000ms;
	animation-duration: 1000ms;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
	z-index: 0;
}

.owl-carousel .owl-animated-out {
	z-index: 1;
}

.owl-carousel .fadeOut {
	-webkit-animation-name: fadeOut;
	animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
	0% {
		opacity: 1;
	}
	
	100% {
		opacity: 0;
	}
}
@keyframes fadeOut {
	0% {
		opacity: 1;
	}
	
	100% {
		opacity: 0;
	}
}

/* 
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
	-webkit-transition: height 500ms ease-in-out;
	-moz-transition: height 500ms ease-in-out;
	-ms-transition: height 500ms ease-in-out;
	-o-transition: height 500ms ease-in-out;
	transition: height 500ms ease-in-out;
}

/* 
 *  Core Owl Carousel CSS File
 */
.owl-carousel {
	display: none;
	width: 100%;
	-webkit-tap-highlight-color: transparent;
	/* position relative and z-index fix webkit rendering fonts issue */
	position: relative;
	z-index: 1;
}

.owl-carousel .owl-stage {
	position: relative;
	-ms-touch-action: pan-Y;
}

.owl-carousel .owl-stage:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}

.owl-carousel .owl-stage-outer {
	position: relative;
	overflow: hidden;
	/* fix for flashing background */
	-webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-dot {
	cursor: pointer;
	cursor: hand;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.owl-carousel.owl-loaded {
	display: block;
}

.owl-carousel.owl-loading {
	opacity: 0;
	display: block;
}

.owl-carousel.owl-hidden {
	opacity: 0;
}

.owl-carousel .owl-refresh .owl-item {
	display: none;
}

.owl-carousel .owl-item {
	position: relative;
	min-height: 1px;
	float: left;
	-webkit-backface-visibility: hidden;
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.owl-carousel .owl-item img {
	display: block;
	width: 100%;
	height: auto;
	-webkit-transform-style: preserve-3d;
}

.owl-carousel.owl-text-select-on .owl-item {
	-webkit-user-select: auto;
	-moz-user-select: auto;
	-ms-user-select: auto;
	user-select: auto;
}

.owl-carousel .owl-grab {
	cursor: move;
	cursor: -webkit-grab;
	cursor: -o-grab;
	cursor: -ms-grab;
	cursor: grab;
}

.owl-carousel.owl-rtl {
	direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
	float: right;
}

/* No Js */
.no-js .owl-carousel {
	display: block;
}

/* 
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
	opacity: 0;
	-webkit-transition: opacity 400ms ease;
	-moz-transition: opacity 400ms ease;
	-ms-transition: opacity 400ms ease;
	-o-transition: opacity 400ms ease;
	transition: opacity 400ms ease;
}

.owl-carousel .owl-item img {
	transform-style: preserve-3d;
}

#skip-to-content {
	padding: 1em;
	position: absolute;
	top: -40px;
	left: 1em;
	z-index: 1000;
	color: white;
}

#skip-to-content:focus {
	position: absolute;
	top: 0;
	background: #4593ff;
}

/*--------------------------------------------------------------
Comments
--------------------------------------------------------------*/
.comment-content a {word-wrap: break-word;}
.bypostauthor {}

/*--------------------------------------------------------------
Media
--------------------------------------------------------------*/
.page-content img.wp-smiley,
.entry-content img.wp-smiley,
.comment-content img.wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}
.wp-caption {
	border: 1px solid #ccc;
	margin-bottom: 1.5em;
	max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
	display: block;
	margin: 1.2% auto 0;
	max-width: 98%;
}
.wp-caption-text {text-align: center;}
.wp-caption .wp-caption-text {margin: 0.8075em 0;}
.site-main .gallery {margin-bottom: 1.5em;}
.gallery-caption {}
.site-main .gallery a img {
	border: none;
	height: auto;
	max-width: 90%;
}
.site-main .gallery dd,.site-main .gallery figcaption {margin: 0;}
.site-main .gallery-columns-4 .gallery-item {}
.site-main .gallery-columns-4 .gallery-item img {}
/* Make sure embeds and iframes fit their containers */
embed,iframe,object {max-width: 100%;}

/*--------------------------------------------------------------
mimoYmima
--------------------------------------------------------------*/
/* mobile table scroll fix */
table {
	/* display:block; makes table unresponsive */
	overflow-x: auto;
	width: 100%;
	-webkit-overflow-scrolling: touch;
	font-size: 80%;
}

@media (min-width: 40.625em) {
	table {
		font-size: 90%;
		display: table
	}
}

th {
	font-weight: 600;
	white-space: nowrap;
	padding: .5em;
}

td {
	padding: .5em
}

/* Removes inner padding and border in Firefox 4+ to make heights consistant across webkit and FF */
button::-moz-focus-inner, input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

/* More image alignment rules */
img.aligncenter.size-full {
	max-width: 100%;
	display: block;
	margin: 0.3125em auto;
}

img.alignright.size-full {
  padding: 0.25em;
  margin: 0 0 0.125em 0.9375em;
  display: inline;
  max-width: 100%;
}

@media (min-width: 40.625em) {
	img.alignright.size-full {
		max-width: 40%;
	}
}

img.alignleft.size-full {
  padding: 0.25em;
  margin: 0 0.9375em 0.125em 0;
  display: inline;
  max-width: 100%;
}

@media (min-width: 40.625em) {
	img.alignleft.size-full {
		max-width:40%
	}
}

.alignright {
	float: right
}

.alignleft {
	float: left
}

.flush-margin {
	margin:0 !important
}

/*--------------------------------------------------------------
WordPress Core
--------------------------------------------------------------*/
.alignnone {
	margin: 0.3125em 1.25em 1.25em 0;
}

.aligncenter,
div.aligncenter {
    display: block;
	margin: 0.3125em auto;
}

.alignright {
    float: none;
	margin: 0.3125em auto 1.25em;
}

.alignleft {
    float: none;
	margin: 0.3125em auto 1.25em;
}

img.alignright,
img.alignleft {
	display: block;
	margin-left: auto;
	margin-right: auto;	
}

@media screen and (min-width: 600px) {
	.alignright {
		float: right;	
		margin: 0.3125em 0 1.25em 1.25em;
	}
	
	.alignleft {
		float: left;	
		margin: 0.3125em 1.25em 1.25em 0;
	}
	
	img.alignright,
	img.alignleft {
		max-width: 40%;
		height: auto;	
	}	
	
	img.alignright {
		margin: 0.3125em 0 1.25em 1.25em;
	}
	
	img.alignleft {
		margin: 0.3125em 1.25em 1.25em 0;		
	}
}

a img.alignright {
    float: none;
	margin: 0.3125em auto 1.25em;
}

a img.alignnone {
	margin: 0.3125em 1.25em 1.25em 0;
}

a img.alignleft {
    float: none;
	margin: 0.3125em auto 1.25em;
}

@media screen and (min-width: 600px) {
	a img.alignright {
		float: right;
		margin: 0.3125em 0 1.25em 1.25em;
	}	
	
	a img.alignleft {
		float: left;
		marign: 0.3125em 1.25em 1.25em 0;
	}		
}

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

.wp-caption {
    background: #fff;
    border: 1px solid #f0f0f0;
    max-width: 96%; /* Image does not overflow the content area */
	padding: 0.3125em 0.1875em 0.625em;
    text-align: center;
}

.wp-caption.alignnone {
	margin: 0.3125em 1.25em 1.25em 0;
}

.wp-caption.alignleft {
	margin: 0.3125em 1.25em 1.25em 0;
}

.wp-caption.alignright {
	margin: 0.3125em 0 1.25em 1.25em;
}

.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
}

.wp-caption p.wp-caption-text {
    font-size: 0.6875em;
    line-height: 1.545454545454545;
    margin: 0;
    padding: 0 0.3636363636363636em 0.4545454545454545em;
}

.embed-container { 
	position: relative; 
	margin-bottom: 2.5em;
	padding-bottom: 56.25%; 
	height: 0; 
	overflow: hidden; 
	max-width: 100%; 
} 

.embed-container iframe, 
.embed-container object, 
.embed-container embed { 
	position: absolute; 
	top: 0; 
	left: 0; 
	width: 100%; 
	height: 100%; 
}

/*
 *  Remodal - v1.1.0
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */

/* ==========================================================================
   Remodal's necessary styles
   ========================================================================== */

/* Hide scroll bar */

html.remodal-is-locked {
  overflow: hidden;

  -ms-touch-action: none;
  touch-action: none;
}

/* Anti FOUC */

.remodal,
[data-remodal-id] {
  display: none;
}

/* Necessary styles of the overlay */

.remodal-overlay {
  position: fixed;
  z-index: 9999;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;

  display: none;
}

/* Necessary styles of the wrapper */

.remodal-wrapper {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  display: none;
  overflow: auto;

  text-align: center;

  -webkit-overflow-scrolling: touch;
}

.remodal-wrapper:after {
  display: inline-block;

  height: 100%;
  margin-left: -0.05em;

  content: "";
}

/* Fix iPad, iPhone glitches */

.remodal-overlay,
.remodal-wrapper {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Necessary styles of the modal dialog */

.remodal {
  position: relative;

  outline: none;

  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.remodal-is-initialized {
  /* Disable Anti-FOUC */
  display: inline-block;
}

/*
 *  Remodal - v1.1.0
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */

/* ==========================================================================
   Remodal's default mobile first theme
   ========================================================================== */

/* Default theme styles for the background */

.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
  -webkit-filter: blur(3px);
  filter: blur(3px);
}

/* Default theme styles of the overlay */

.remodal-overlay {
  background: rgba(43, 46, 56, 0.9);
}

.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.remodal-overlay.remodal-is-opening {
  -webkit-animation-name: remodal-overlay-opening-keyframes;
  animation-name: remodal-overlay-opening-keyframes;
}

.remodal-overlay.remodal-is-closing {
  -webkit-animation-name: remodal-overlay-closing-keyframes;
  animation-name: remodal-overlay-closing-keyframes;
}

/* Default theme styles of the wrapper */

.remodal-wrapper {
  padding: 10px 10px 0;
}

/* Default theme styles of the modal dialog */

.remodal {
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 10px;
  padding: 35px;

  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);

  color: #2b2e38;
  background: #fff;
}

.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.remodal.remodal-is-opening {
  -webkit-animation-name: remodal-opening-keyframes;
  animation-name: remodal-opening-keyframes;
}

.remodal.remodal-is-closing {
  -webkit-animation-name: remodal-closing-keyframes;
  animation-name: remodal-closing-keyframes;
}

/* Vertical align of the modal dialog */

.remodal,
.remodal-wrapper:after {
  vertical-align: middle;
}

/* Close button */

.remodal-close {
  position: absolute;
  top: 0;
  left: 0;

  display: block;
  overflow: visible;

  width: 35px;
  height: 35px;
  margin: 0;
  padding: 0;

  cursor: pointer;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  text-decoration: none;

  color: #95979c;
  border: 0;
  outline: 0;
  background: transparent;
}

.remodal-close:hover,
.remodal-close:focus {
  color: #2b2e38;
}

.remodal-close:before {
  font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
  font-size: 25px;
  line-height: 35px;

  position: absolute;
  top: 0;
  left: 0;

  display: block;

  width: 35px;

  content: "\00d7";
  text-align: center;
}

/* Dialog buttons */

.remodal-confirm,
.remodal-cancel {
  font: inherit;

  display: inline-block;
  overflow: visible;

  min-width: 110px;
  margin: 0;
  padding: 12px 0;

  cursor: pointer;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;

  border: 0;
  outline: 0;
}

.remodal-confirm {
  color: #fff;
  background: #81c784;
}

.remodal-confirm:hover,
.remodal-confirm:focus {
  background: #66bb6a;
}

.remodal-cancel {
  color: #fff;
  background: #e57373;
}

.remodal-cancel:hover,
.remodal-cancel:focus {
  background: #ef5350;
}

/* Remove inner padding and border in Firefox 4+ for the button tag. */

.remodal-confirm::-moz-focus-inner,
.remodal-cancel::-moz-focus-inner,
.remodal-close::-moz-focus-inner {
  padding: 0;

  border: 0;
}

/* Keyframes
   ========================================================================== */

@-webkit-keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);

    opacity: 0;
  }
  to {
    -webkit-transform: none;
    transform: none;

    opacity: 1;
  }
}

@keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);

    opacity: 0;
  }
  to {
    -webkit-transform: none;
    transform: none;

    opacity: 1;
  }
}

@-webkit-keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);

    opacity: 1;
  }
  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);

    opacity: 0;
  }
}

@keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);

    opacity: 1;
  }
  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);

    opacity: 0;
  }
}

@-webkit-keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/* Media queries
   ========================================================================== */

@media only screen and (min-width: 641px) {
  .remodal {
    max-width: 700px;
  }
}

/* IE8
   ========================================================================== */

.lt-ie9 .remodal-overlay {
  background: #2b2e38;
}

.lt-ie9 .remodal {
  width: 700px;
}

.masonry {
	/*background: #fff url('img/geometry2.png') repeat;*/
	background: #f2f2f2 url('img/distressed-concrete.jpg') repeat;
	padding: 2.5em 0;	
}
/* fluid 5 columns */
.grid-sizer,
.grid-item { width: 50% }

.grid-item img {
	display: block;
	padding: 0.3125em;	
}

@media screen and (min-width: 768px) {
	.grid-sizer,
	.grid-item { width: 33.33333333333333%; }	
}

/*.masonry.is-active .grid-item {
	transform: translateY(40px);
	-moz-animation: stagger-masonry 0.8s ease forward;
	-webkit-animation: stagger-masonry 0.8s ease forward;
	-o-animation: stagger-masonry 0.8s ease forward;	
	animation: stagger-masonry 0.8s ease forwards;
}

@keyframes stagger-masonry {
	to {
		opacity: 1;
		transform: translateY(0); 		
	}
}*/

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8; }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  display: none !important; }

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }
  .mfp-preloader a {
    color: #CCC; }
    .mfp-preloader a:hover {
      color: #FFF; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation; }

button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }
  .mfp-close:hover,
  .mfp-close:focus {
    opacity: 1; }
  .mfp-close:active {
    top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333; }

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent; }
  .mfp-arrow:active {
    margin-top: -54px; }
  .mfp-arrow:hover,
  .mfp-arrow:focus {
    opacity: 1; }
  .mfp-arrow:before,
  .mfp-arrow:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent; }
  .mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px; }
  .mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7; }

.mfp-arrow-left {
  left: 0; }
  .mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px; }
  .mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F; }

.mfp-arrow-right {
  right: 0; }
  .mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px; }
  .mfp-arrow-right:before {
    border-left: 27px solid #3F3F3F; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }
  .mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px; }
  .mfp-iframe-holder .mfp-close {
    top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }
  .mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }
  .mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444; }
  .mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px; }
  .mfp-figure figure {
    margin: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }
  .mfp-img-mobile img.mfp-img {
    padding: 0; }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box; }
    .mfp-img-mobile .mfp-bottom-bar:empty {
      padding: 0; }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }


@charset "UTF-8";

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0,-4px,0);
    transform: translate3d(0,-4px,0);
  }
}

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0,-4px,0);
    transform: translate3d(0,-4px,0);
  }
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

@keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(.97, .97, .97);
    transform: scale3d(.97, .97, .97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(.97, .97, .97);
    transform: scale3d(.97, .97, .97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }
}

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }
}

.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }


  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
    transform: perspective(400px) scale3d(.95, .95, .95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
    transform: perspective(400px) scale3d(.95, .95, .95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }

  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }

  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

@keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  to {
    opacity: 0;
  }
}

.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
    transform: scale(.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
    transform: scale(.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
    transform: scale(.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
    transform: scale(.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}