@charset "UTF-8";
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 Normalize
2.0 Variables
3.0 Mixins
4.0 Boostrap Grid
5.0 Accessibility
6.0 Alignments
7.0 Typography
8.0 Forms
9.0. Tables
10.0 Formatting
11.0 Lists
12.0 Links
13.0 Navigation
14.0 Comments
15.0 Widgets
16.0 Libraries
17.0 Modules
--------------------------------------------------------------*/
/*--------------------------------------------------------------
1.0 Normalize
Styles based on Normalize v8.0.0 @link https://github.com/necolas/normalize.css
--------------------------------------------------------------*/
/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
	line-height: 1.15;
	/* 1 */
	-webkit-text-size-adjust: 100%;
	/* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */

/****************************************  custom csss here*******************************************/
.alert-danger {
	color: #a94442;
	background-color: #f2dede;
	border-color: #ebccd1;
}

.alert {
	padding: 8px;
	margin-bottom: 20px;
	border: 1px solid green;
	border-radius: 4px;
	color: green;
}

/*****************************************  custom csss here******************************************/
body {
	margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
	/* 1 */
	height: 0;
	/* 1 */
	overflow: visible;
	/* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
	font-family: monospace, monospace;
	/* 1 */
	font-size: 1em;
	/* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
	background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
	border-bottom: none;
	/* 1 */
	text-decoration: underline;
	/* 2 */
	-webkit-text-decoration: underline dotted;
	text-decoration: underline dotted;
	/* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
	font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
	font-family: monospace, monospace;
	/* 1 */
	font-size: 1em;
	/* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
	font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
	border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	/* 1 */
	font-size: 100%;
	/* 1 */
	line-height: 1.15;
	/* 1 */
	margin: 0;
	/* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
	/* 1 */
	overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
	/* 1 */
	text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
	padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	/* 1 */
	color: inherit;
	/* 2 */
	display: table;
	/* 1 */
	max-width: 100%;
	/* 1 */
	padding: 0;
	/* 3 */
	white-space: normal;
	/* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
	vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
	overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	/* 1 */
	padding: 0;
	/* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
	-webkit-appearance: textfield;
	/* 1 */
	outline-offset: -2px;
	/* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
	-webkit-appearance: button;
	/* 1 */
	font: inherit;
	/* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
	display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
	display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
	display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
	display: none;
}

/*--------------------------------------------------------------
2.0 Variables
--------------------------------------------------------------*/
/*--------------------------------------------------------------
3.0 Mixins
--------------------------------------------------------------*/
/*--------------------------------------------------------------
4.0 Bootstrap Grid
--------------------------------------------------------------*/
/*!
 * Bootstrap Grid v4.0.0 (https://getbootstrap.com)
 * Copyright 2011-2018 The Bootstrap Authors
 * Copyright 2011-2018 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
@-ms-viewport {
	width: device-width;
}

html {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-ms-overflow-style: scrollbar;
}

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

.container {
	width: 100%;
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
}

@media (min-width: 576px) {
	.container {
		max-width: 540px;
	}
}

@media (min-width: 768px) {
	.container {
		max-width: 720px;
	}
}

@media (min-width: 992px) {
	.container {
		max-width: 960px;
	}
}

@media (min-width: 1200px) {
	.container {
		max-width: 1170px;
	}
}

.container-fluid {
	width: 100%;
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
}

.row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right: -15px;
	margin-left: -15px;
}

.no-gutters {
	margin-right: 0;
	margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*="col-"] {
	padding-right: 0;
	padding-left: 0;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col,
.col-auto,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm,
.col-sm-auto,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md,
.col-md-auto,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg,
.col-lg-auto,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl,
.col-xl-auto {
	position: relative;
	width: 100%;
	min-height: 1px;
	padding-right: 15px;
	padding-left: 15px;
}

.col {
	-ms-flex-preferred-size: 0;
	flex-basis: 0;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	max-width: 100%;
}

.col-auto {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: auto;
	max-width: none;
}

.col-1 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 8.333333%;
	flex: 0 0 8.333333%;
	max-width: 8.333333%;
}

.col-2 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 16.666667%;
	flex: 0 0 16.666667%;
	max-width: 16.666667%;
}

.col-3 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 25%;
	flex: 0 0 25%;
	max-width: 25%;
}

.col-4 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 33.333333%;
	flex: 0 0 33.333333%;
	max-width: 33.333333%;
}

.col-5 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 41.666667%;
	flex: 0 0 41.666667%;
	max-width: 41.666667%;
}

.col-6 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
	max-width: 50%;
}

.col-7 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 58.333333%;
	flex: 0 0 58.333333%;
	max-width: 58.333333%;
}

.col-8 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 66.666667%;
	flex: 0 0 66.666667%;
	max-width: 66.666667%;
}

.col-9 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 75%;
	flex: 0 0 75%;
	max-width: 75%;
}

.col-10 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 83.333333%;
	flex: 0 0 83.333333%;
	max-width: 83.333333%;
}

.col-11 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 91.666667%;
	flex: 0 0 91.666667%;
	max-width: 91.666667%;
}

.col-12 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%;
}

.order-first {
	-webkit-box-ordinal-group: 0;
	-ms-flex-order: -1;
	order: -1;
}

.order-last {
	-webkit-box-ordinal-group: 14;
	-ms-flex-order: 13;
	order: 13;
}

.order-0 {
	-webkit-box-ordinal-group: 1;
	-ms-flex-order: 0;
	order: 0;
}

.order-1 {
	-webkit-box-ordinal-group: 2;
	-ms-flex-order: 1;
	order: 1;
}

.order-2 {
	-webkit-box-ordinal-group: 3;
	-ms-flex-order: 2;
	order: 2;
}

.order-3 {
	-webkit-box-ordinal-group: 4;
	-ms-flex-order: 3;
	order: 3;
}

.order-4 {
	-webkit-box-ordinal-group: 5;
	-ms-flex-order: 4;
	order: 4;
}

.order-5 {
	-webkit-box-ordinal-group: 6;
	-ms-flex-order: 5;
	order: 5;
}

.order-6 {
	-webkit-box-ordinal-group: 7;
	-ms-flex-order: 6;
	order: 6;
}

.order-7 {
	-webkit-box-ordinal-group: 8;
	-ms-flex-order: 7;
	order: 7;
}

.order-8 {
	-webkit-box-ordinal-group: 9;
	-ms-flex-order: 8;
	order: 8;
}

.order-9 {
	-webkit-box-ordinal-group: 10;
	-ms-flex-order: 9;
	order: 9;
}

.order-10 {
	-webkit-box-ordinal-group: 11;
	-ms-flex-order: 10;
	order: 10;
}

.order-11 {
	-webkit-box-ordinal-group: 12;
	-ms-flex-order: 11;
	order: 11;
}

.order-12 {
	-webkit-box-ordinal-group: 13;
	-ms-flex-order: 12;
	order: 12;
}

.offset-1 {
	margin-left: 8.333333%;
}

.offset-2 {
	margin-left: 16.666667%;
}

.offset-3 {
	margin-left: 25%;
}

.offset-4 {
	margin-left: 33.333333%;
}

.offset-5 {
	margin-left: 41.666667%;
}

.offset-6 {
	margin-left: 50%;
}

.offset-7 {
	margin-left: 58.333333%;
}

.offset-8 {
	margin-left: 66.666667%;
}

.offset-9 {
	margin-left: 75%;
}

.offset-10 {
	margin-left: 83.333333%;
}

.offset-11 {
	margin-left: 91.666667%;
}

@media (min-width: 576px) {
	.col-sm {
		-ms-flex-preferred-size: 0;
		flex-basis: 0;
		-webkit-box-flex: 1;
		-ms-flex-positive: 1;
		flex-grow: 1;
		max-width: 100%;
	}
	.col-sm-auto {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: auto;
		max-width: none;
	}
	.col-sm-1 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 8.333333%;
		flex: 0 0 8.333333%;
		max-width: 8.333333%;
	}
	.col-sm-2 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 16.666667%;
		flex: 0 0 16.666667%;
		max-width: 16.666667%;
	}
	.col-sm-3 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
		max-width: 25%;
	}
	.col-sm-4 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 33.333333%;
		flex: 0 0 33.333333%;
		max-width: 33.333333%;
	}
	.col-sm-5 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 41.666667%;
		flex: 0 0 41.666667%;
		max-width: 41.666667%;
	}
	.col-sm-6 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
	}
	.col-sm-7 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 58.333333%;
		flex: 0 0 58.333333%;
		max-width: 58.333333%;
	}
	.col-sm-8 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 66.666667%;
		flex: 0 0 66.666667%;
		max-width: 66.666667%;
	}
	.col-sm-9 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 75%;
		flex: 0 0 75%;
		max-width: 75%;
	}
	.col-sm-10 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 83.333333%;
		flex: 0 0 83.333333%;
		max-width: 83.333333%;
	}
	.col-sm-11 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 91.666667%;
		flex: 0 0 91.666667%;
		max-width: 91.666667%;
	}
	.col-sm-12 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
	.order-sm-first {
		-webkit-box-ordinal-group: 0;
		-ms-flex-order: -1;
		order: -1;
	}
	.order-sm-last {
		-webkit-box-ordinal-group: 14;
		-ms-flex-order: 13;
		order: 13;
	}
	.order-sm-0 {
		-webkit-box-ordinal-group: 1;
		-ms-flex-order: 0;
		order: 0;
	}
	.order-sm-1 {
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1;
	}
	.order-sm-2 {
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;
	}
	.order-sm-3 {
		-webkit-box-ordinal-group: 4;
		-ms-flex-order: 3;
		order: 3;
	}
	.order-sm-4 {
		-webkit-box-ordinal-group: 5;
		-ms-flex-order: 4;
		order: 4;
	}
	.order-sm-5 {
		-webkit-box-ordinal-group: 6;
		-ms-flex-order: 5;
		order: 5;
	}
	.order-sm-6 {
		-webkit-box-ordinal-group: 7;
		-ms-flex-order: 6;
		order: 6;
	}
	.order-sm-7 {
		-webkit-box-ordinal-group: 8;
		-ms-flex-order: 7;
		order: 7;
	}
	.order-sm-8 {
		-webkit-box-ordinal-group: 9;
		-ms-flex-order: 8;
		order: 8;
	}
	.order-sm-9 {
		-webkit-box-ordinal-group: 10;
		-ms-flex-order: 9;
		order: 9;
	}
	.order-sm-10 {
		-webkit-box-ordinal-group: 11;
		-ms-flex-order: 10;
		order: 10;
	}
	.order-sm-11 {
		-webkit-box-ordinal-group: 12;
		-ms-flex-order: 11;
		order: 11;
	}
	.order-sm-12 {
		-webkit-box-ordinal-group: 13;
		-ms-flex-order: 12;
		order: 12;
	}
	.offset-sm-0 {
		margin-left: 0;
	}
	.offset-sm-1 {
		margin-left: 8.333333%;
	}
	.offset-sm-2 {
		margin-left: 16.666667%;
	}
	.offset-sm-3 {
		margin-left: 25%;
	}
	.offset-sm-4 {
		margin-left: 33.333333%;
	}
	.offset-sm-5 {
		margin-left: 41.666667%;
	}
	.offset-sm-6 {
		margin-left: 50%;
	}
	.offset-sm-7 {
		margin-left: 58.333333%;
	}
	.offset-sm-8 {
		margin-left: 66.666667%;
	}
	.offset-sm-9 {
		margin-left: 75%;
	}
	.offset-sm-10 {
		margin-left: 83.333333%;
	}
	.offset-sm-11 {
		margin-left: 91.666667%;
	}
}

@media (min-width: 768px) {
	.col-md {
		-ms-flex-preferred-size: 0;
		flex-basis: 0;
		-webkit-box-flex: 1;
		-ms-flex-positive: 1;
		flex-grow: 1;
		max-width: 100%;
	}
	.col-md-auto {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: auto;
		max-width: none;
	}
	.col-md-1 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 8.333333%;
		flex: 0 0 8.333333%;
		max-width: 8.333333%;
	}
	.col-md-2 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 16.666667%;
		flex: 0 0 16.666667%;
		max-width: 16.666667%;
	}
	.col-md-3 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
		max-width: 25%;
	}
	.col-md-4 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 33.333333%;
		flex: 0 0 33.333333%;
		max-width: 33.333333%;
	}
	.col-md-5 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 41.666667%;
		flex: 0 0 41.666667%;
		max-width: 41.666667%;
	}
	.col-md-6 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
	}
	.col-md-7 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 58.333333%;
		flex: 0 0 58.333333%;
		max-width: 58.333333%;
	}
	.col-md-8 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 66.666667%;
		flex: 0 0 66.666667%;
		max-width: 66.666667%;
	}
	.col-md-9 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 75%;
		flex: 0 0 75%;
		max-width: 75%;
	}
	.col-md-10 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 83.333333%;
		flex: 0 0 83.333333%;
		max-width: 83.333333%;
	}
	.col-md-11 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 91.666667%;
		flex: 0 0 91.666667%;
		max-width: 91.666667%;
	}
	.col-md-12 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
	.order-md-first {
		-webkit-box-ordinal-group: 0;
		-ms-flex-order: -1;
		order: -1;
	}
	.order-md-last {
		-webkit-box-ordinal-group: 14;
		-ms-flex-order: 13;
		order: 13;
	}
	.order-md-0 {
		-webkit-box-ordinal-group: 1;
		-ms-flex-order: 0;
		order: 0;
	}
	.order-md-1 {
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1;
	}
	.order-md-2 {
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;
	}
	.order-md-3 {
		-webkit-box-ordinal-group: 4;
		-ms-flex-order: 3;
		order: 3;
	}
	.order-md-4 {
		-webkit-box-ordinal-group: 5;
		-ms-flex-order: 4;
		order: 4;
	}
	.order-md-5 {
		-webkit-box-ordinal-group: 6;
		-ms-flex-order: 5;
		order: 5;
	}
	.order-md-6 {
		-webkit-box-ordinal-group: 7;
		-ms-flex-order: 6;
		order: 6;
	}
	.order-md-7 {
		-webkit-box-ordinal-group: 8;
		-ms-flex-order: 7;
		order: 7;
	}
	.order-md-8 {
		-webkit-box-ordinal-group: 9;
		-ms-flex-order: 8;
		order: 8;
	}
	.order-md-9 {
		-webkit-box-ordinal-group: 10;
		-ms-flex-order: 9;
		order: 9;
	}
	.order-md-10 {
		-webkit-box-ordinal-group: 11;
		-ms-flex-order: 10;
		order: 10;
	}
	.order-md-11 {
		-webkit-box-ordinal-group: 12;
		-ms-flex-order: 11;
		order: 11;
	}
	.order-md-12 {
		-webkit-box-ordinal-group: 13;
		-ms-flex-order: 12;
		order: 12;
	}
	.offset-md-0 {
		margin-left: 0;
	}
	.offset-md-1 {
		margin-left: 8.333333%;
	}
	.offset-md-2 {
		margin-left: 16.666667%;
	}
	.offset-md-3 {
		margin-left: 25%;
	}
	.offset-md-4 {
		margin-left: 33.333333%;
	}
	.offset-md-5 {
		margin-left: 41.666667%;
	}
	.offset-md-6 {
		margin-left: 50%;
	}
	.offset-md-7 {
		margin-left: 58.333333%;
	}
	.offset-md-8 {
		margin-left: 66.666667%;
	}
	.offset-md-9 {
		margin-left: 75%;
	}
	.offset-md-10 {
		margin-left: 83.333333%;
	}
	.offset-md-11 {
		margin-left: 91.666667%;
	}
}

@media (min-width: 992px) {
	.col-lg {
		-ms-flex-preferred-size: 0;
		flex-basis: 0;
		-webkit-box-flex: 1;
		-ms-flex-positive: 1;
		flex-grow: 1;
		max-width: 100%;
	}
	.col-lg-auto {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: auto;
		max-width: none;
	}
	.col-lg-1 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 8.333333%;
		flex: 0 0 8.333333%;
		max-width: 8.333333%;
	}
	.col-lg-2 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 16.666667%;
		flex: 0 0 16.666667%;
		max-width: 16.666667%;
	}
	.col-lg-3 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
		max-width: 25%;
	}
	.col-lg-4 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 33.333333%;
		flex: 0 0 33.333333%;
		max-width: 33.333333%;
	}
	.col-lg-5 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 41.666667%;
		flex: 0 0 41.666667%;
		max-width: 41.666667%;
	}
	.col-lg-6 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
	}
	.col-lg-7 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 58.333333%;
		flex: 0 0 58.333333%;
		max-width: 58.333333%;
	}
	.col-lg-8 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 66.666667%;
		flex: 0 0 66.666667%;
		max-width: 66.666667%;
	}
	.col-lg-9 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 75%;
		flex: 0 0 75%;
		max-width: 75%;
	}
	.col-lg-10 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 83.333333%;
		flex: 0 0 83.333333%;
		max-width: 83.333333%;
	}
	.col-lg-11 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 91.666667%;
		flex: 0 0 91.666667%;
		max-width: 91.666667%;
	}
	.col-lg-12 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
	.order-lg-first {
		-webkit-box-ordinal-group: 0;
		-ms-flex-order: -1;
		order: -1;
	}
	.order-lg-last {
		-webkit-box-ordinal-group: 14;
		-ms-flex-order: 13;
		order: 13;
	}
	.order-lg-0 {
		-webkit-box-ordinal-group: 1;
		-ms-flex-order: 0;
		order: 0;
	}
	.order-lg-1 {
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1;
	}
	.order-lg-2 {
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;
	}
	.order-lg-3 {
		-webkit-box-ordinal-group: 4;
		-ms-flex-order: 3;
		order: 3;
	}
	.order-lg-4 {
		-webkit-box-ordinal-group: 5;
		-ms-flex-order: 4;
		order: 4;
	}
	.order-lg-5 {
		-webkit-box-ordinal-group: 6;
		-ms-flex-order: 5;
		order: 5;
	}
	.order-lg-6 {
		-webkit-box-ordinal-group: 7;
		-ms-flex-order: 6;
		order: 6;
	}
	.order-lg-7 {
		-webkit-box-ordinal-group: 8;
		-ms-flex-order: 7;
		order: 7;
	}
	.order-lg-8 {
		-webkit-box-ordinal-group: 9;
		-ms-flex-order: 8;
		order: 8;
	}
	.order-lg-9 {
		-webkit-box-ordinal-group: 10;
		-ms-flex-order: 9;
		order: 9;
	}
	.order-lg-10 {
		-webkit-box-ordinal-group: 11;
		-ms-flex-order: 10;
		order: 10;
	}
	.order-lg-11 {
		-webkit-box-ordinal-group: 12;
		-ms-flex-order: 11;
		order: 11;
	}
	.order-lg-12 {
		-webkit-box-ordinal-group: 13;
		-ms-flex-order: 12;
		order: 12;
	}
	.offset-lg-0 {
		margin-left: 0;
	}
	.offset-lg-1 {
		margin-left: 8.333333%;
	}
	.offset-lg-2 {
		margin-left: 16.666667%;
	}
	.offset-lg-3 {
		margin-left: 25%;
	}
	.offset-lg-4 {
		margin-left: 33.333333%;
	}
	.offset-lg-5 {
		margin-left: 41.666667%;
	}
	.offset-lg-6 {
		margin-left: 50%;
	}
	.offset-lg-7 {
		margin-left: 58.333333%;
	}
	.offset-lg-8 {
		margin-left: 66.666667%;
	}
	.offset-lg-9 {
		margin-left: 75%;
	}
	.offset-lg-10 {
		margin-left: 83.333333%;
	}
	.offset-lg-11 {
		margin-left: 91.666667%;
	}
}

@media (min-width: 1200px) {
	.col-xl {
		-ms-flex-preferred-size: 0;
		flex-basis: 0;
		-webkit-box-flex: 1;
		-ms-flex-positive: 1;
		flex-grow: 1;
		max-width: 100%;
	}
	.col-xl-auto {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: auto;
		max-width: none;
	}
	.col-xl-1 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 8.333333%;
		flex: 0 0 8.333333%;
		max-width: 8.333333%;
	}
	.col-xl-2 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 16.666667%;
		flex: 0 0 16.666667%;
		max-width: 16.666667%;
	}
	.col-xl-3 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
		max-width: 25%;
	}
	.col-xl-4 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 33.333333%;
		flex: 0 0 33.333333%;
		max-width: 33.333333%;
	}
	.col-xl-5 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 41.666667%;
		flex: 0 0 41.666667%;
		max-width: 41.666667%;
	}
	.col-xl-6 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
	}
	.col-xl-7 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 58.333333%;
		flex: 0 0 58.333333%;
		max-width: 58.333333%;
	}
	.col-xl-8 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 66.666667%;
		flex: 0 0 66.666667%;
		max-width: 66.666667%;
	}
	.col-xl-9 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 75%;
		flex: 0 0 75%;
		max-width: 75%;
	}
	.col-xl-10 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 83.333333%;
		flex: 0 0 83.333333%;
		max-width: 83.333333%;
	}
	.col-xl-11 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 91.666667%;
		flex: 0 0 91.666667%;
		max-width: 91.666667%;
	}
	.col-xl-12 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
	.order-xl-first {
		-webkit-box-ordinal-group: 0;
		-ms-flex-order: -1;
		order: -1;
	}
	.order-xl-last {
		-webkit-box-ordinal-group: 14;
		-ms-flex-order: 13;
		order: 13;
	}
	.order-xl-0 {
		-webkit-box-ordinal-group: 1;
		-ms-flex-order: 0;
		order: 0;
	}
	.order-xl-1 {
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1;
	}
	.order-xl-2 {
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;
	}
	.order-xl-3 {
		-webkit-box-ordinal-group: 4;
		-ms-flex-order: 3;
		order: 3;
	}
	.order-xl-4 {
		-webkit-box-ordinal-group: 5;
		-ms-flex-order: 4;
		order: 4;
	}
	.order-xl-5 {
		-webkit-box-ordinal-group: 6;
		-ms-flex-order: 5;
		order: 5;
	}
	.order-xl-6 {
		-webkit-box-ordinal-group: 7;
		-ms-flex-order: 6;
		order: 6;
	}
	.order-xl-7 {
		-webkit-box-ordinal-group: 8;
		-ms-flex-order: 7;
		order: 7;
	}
	.order-xl-8 {
		-webkit-box-ordinal-group: 9;
		-ms-flex-order: 8;
		order: 8;
	}
	.order-xl-9 {
		-webkit-box-ordinal-group: 10;
		-ms-flex-order: 9;
		order: 9;
	}
	.order-xl-10 {
		-webkit-box-ordinal-group: 11;
		-ms-flex-order: 10;
		order: 10;
	}
	.order-xl-11 {
		-webkit-box-ordinal-group: 12;
		-ms-flex-order: 11;
		order: 11;
	}
	.order-xl-12 {
		-webkit-box-ordinal-group: 13;
		-ms-flex-order: 12;
		order: 12;
	}
	.offset-xl-0 {
		margin-left: 0;
	}
	.offset-xl-1 {
		margin-left: 8.333333%;
	}
	.offset-xl-2 {
		margin-left: 16.666667%;
	}
	.offset-xl-3 {
		margin-left: 25%;
	}
	.offset-xl-4 {
		margin-left: 33.333333%;
	}
	.offset-xl-5 {
		margin-left: 41.666667%;
	}
	.offset-xl-6 {
		margin-left: 50%;
	}
	.offset-xl-7 {
		margin-left: 58.333333%;
	}
	.offset-xl-8 {
		margin-left: 66.666667%;
	}
	.offset-xl-9 {
		margin-left: 75%;
	}
	.offset-xl-10 {
		margin-left: 83.333333%;
	}
	.offset-xl-11 {
		margin-left: 91.666667%;
	}
}

.d-none {
	display: none !important;
}

.d-inline {
	display: inline !important;
}

.d-inline-block {
	display: inline-block !important;
}

.d-block {
	display: block !important;
}

.d-table {
	display: table !important;
}

.d-table-row {
	display: table-row !important;
}

.d-table-cell {
	display: table-cell !important;
}

.d-flex {
	display: -webkit-box !important;
	display: -ms-flexbox !important;
	display: flex !important;
}

.d-inline-flex {
	display: -webkit-inline-box !important;
	display: -ms-inline-flexbox !important;
	display: inline-flex !important;
}

@media (min-width: 576px) {
	.d-sm-none {
		display: none !important;
	}
	.d-sm-inline {
		display: inline !important;
	}
	.d-sm-inline-block {
		display: inline-block !important;
	}
	.d-sm-block {
		display: block !important;
	}
	.d-sm-table {
		display: table !important;
	}
	.d-sm-table-row {
		display: table-row !important;
	}
	.d-sm-table-cell {
		display: table-cell !important;
	}
	.d-sm-flex {
		display: -webkit-box !important;
		display: -ms-flexbox !important;
		display: flex !important;
	}
	.d-sm-inline-flex {
		display: -webkit-inline-box !important;
		display: -ms-inline-flexbox !important;
		display: inline-flex !important;
	}
}

@media (min-width: 768px) {
	.d-md-none {
		display: none !important;
	}
	.d-md-inline {
		display: inline !important;
	}
	.d-md-inline-block {
		display: inline-block !important;
	}
	.d-md-block {
		display: block !important;
	}
	.d-md-table {
		display: table !important;
	}
	.d-md-table-row {
		display: table-row !important;
	}
	.d-md-table-cell {
		display: table-cell !important;
	}
	.d-md-flex {
		display: -webkit-box !important;
		display: -ms-flexbox !important;
		display: flex !important;
	}
	.d-md-inline-flex {
		display: -webkit-inline-box !important;
		display: -ms-inline-flexbox !important;
		display: inline-flex !important;
	}
}

@media (min-width: 992px) {
	.d-lg-none {
		display: none !important;
	}
	.d-lg-inline {
		display: inline !important;
	}
	.d-lg-inline-block {
		display: inline-block !important;
	}
	.d-lg-block {
		display: block !important;
	}
	.d-lg-table {
		display: table !important;
	}
	.d-lg-table-row {
		display: table-row !important;
	}
	.d-lg-table-cell {
		display: table-cell !important;
	}
	.d-lg-flex {
		display: -webkit-box !important;
		display: -ms-flexbox !important;
		display: flex !important;
	}
	.d-lg-inline-flex {
		display: -webkit-inline-box !important;
		display: -ms-inline-flexbox !important;
		display: inline-flex !important;
	}
}

@media (min-width: 1200px) {
	.d-xl-none {
		display: none !important;
	}
	.d-xl-inline {
		display: inline !important;
	}
	.d-xl-inline-block {
		display: inline-block !important;
	}
	.d-xl-block {
		display: block !important;
	}
	.d-xl-table {
		display: table !important;
	}
	.d-xl-table-row {
		display: table-row !important;
	}
	.d-xl-table-cell {
		display: table-cell !important;
	}
	.d-xl-flex {
		display: -webkit-box !important;
		display: -ms-flexbox !important;
		display: flex !important;
	}
	.d-xl-inline-flex {
		display: -webkit-inline-box !important;
		display: -ms-inline-flexbox !important;
		display: inline-flex !important;
	}
}

@media print {
	.d-print-none {
		display: none !important;
	}
	.d-print-inline {
		display: inline !important;
	}
	.d-print-inline-block {
		display: inline-block !important;
	}
	.d-print-block {
		display: block !important;
	}
	.d-print-table {
		display: table !important;
	}
	.d-print-table-row {
		display: table-row !important;
	}
	.d-print-table-cell {
		display: table-cell !important;
	}
	.d-print-flex {
		display: -webkit-box !important;
		display: -ms-flexbox !important;
		display: flex !important;
	}
	.d-print-inline-flex {
		display: -webkit-inline-box !important;
		display: -ms-inline-flexbox !important;
		display: inline-flex !important;
	}
}

.flex-row {
	-webkit-box-orient: horizontal !important;
	-webkit-box-direction: normal !important;
	-ms-flex-direction: row !important;
	flex-direction: row !important;
}

.flex-column {
	-webkit-box-orient: vertical !important;
	-webkit-box-direction: normal !important;
	-ms-flex-direction: column !important;
	flex-direction: column !important;
}

.flex-row-reverse {
	-webkit-box-orient: horizontal !important;
	-webkit-box-direction: reverse !important;
	-ms-flex-direction: row-reverse !important;
	flex-direction: row-reverse !important;
}

.flex-column-reverse {
	-webkit-box-orient: vertical !important;
	-webkit-box-direction: reverse !important;
	-ms-flex-direction: column-reverse !important;
	flex-direction: column-reverse !important;
}

.flex-wrap {
	-ms-flex-wrap: wrap !important;
	flex-wrap: wrap !important;
}

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

.flex-wrap-reverse {
	-ms-flex-wrap: wrap-reverse !important;
	flex-wrap: wrap-reverse !important;
}

.justify-content-start {
	-webkit-box-pack: start !important;
	-ms-flex-pack: start !important;
	justify-content: flex-start !important;
}

.justify-content-end {
	-webkit-box-pack: end !important;
	-ms-flex-pack: end !important;
	justify-content: flex-end !important;
}

.justify-content-center {
	-webkit-box-pack: center !important;
	-ms-flex-pack: center !important;
	justify-content: center !important;
}

.justify-content-between {
	-webkit-box-pack: justify !important;
	-ms-flex-pack: justify !important;
	justify-content: space-between !important;
}

.justify-content-around {
	-ms-flex-pack: distribute !important;
	justify-content: space-around !important;
}

.align-items-start {
	-webkit-box-align: start !important;
	-ms-flex-align: start !important;
	align-items: flex-start !important;
}

.align-items-end {
	-webkit-box-align: end !important;
	-ms-flex-align: end !important;
	align-items: flex-end !important;
}

.align-items-center {
	-webkit-box-align: center !important;
	-ms-flex-align: center !important;
	align-items: center !important;
}

.align-items-baseline {
	-webkit-box-align: baseline !important;
	-ms-flex-align: baseline !important;
	align-items: baseline !important;
}

.align-items-stretch {
	-webkit-box-align: stretch !important;
	-ms-flex-align: stretch !important;
	align-items: stretch !important;
}

.align-content-start {
	-ms-flex-line-pack: start !important;
	align-content: flex-start !important;
}

.align-content-end {
	-ms-flex-line-pack: end !important;
	align-content: flex-end !important;
}

.align-content-center {
	-ms-flex-line-pack: center !important;
	align-content: center !important;
}

.align-content-between {
	-ms-flex-line-pack: justify !important;
	align-content: space-between !important;
}

.align-content-around {
	-ms-flex-line-pack: distribute !important;
	align-content: space-around !important;
}

.align-content-stretch {
	-ms-flex-line-pack: stretch !important;
	align-content: stretch !important;
}

.align-self-auto {
	-ms-flex-item-align: auto !important;
	align-self: auto !important;
}

.align-self-start {
	-ms-flex-item-align: start !important;
	align-self: flex-start !important;
}

.align-self-end {
	-ms-flex-item-align: end !important;
	align-self: flex-end !important;
}

.align-self-center {
	-ms-flex-item-align: center !important;
	align-self: center !important;
}

.align-self-baseline {
	-ms-flex-item-align: baseline !important;
	align-self: baseline !important;
}

.align-self-stretch {
	-ms-flex-item-align: stretch !important;
	align-self: stretch !important;
}

@media (min-width: 576px) {
	.flex-sm-row {
		-webkit-box-orient: horizontal !important;
		-webkit-box-direction: normal !important;
		-ms-flex-direction: row !important;
		flex-direction: row !important;
	}
	.flex-sm-column {
		-webkit-box-orient: vertical !important;
		-webkit-box-direction: normal !important;
		-ms-flex-direction: column !important;
		flex-direction: column !important;
	}
	.flex-sm-row-reverse {
		-webkit-box-orient: horizontal !important;
		-webkit-box-direction: reverse !important;
		-ms-flex-direction: row-reverse !important;
		flex-direction: row-reverse !important;
	}
	.flex-sm-column-reverse {
		-webkit-box-orient: vertical !important;
		-webkit-box-direction: reverse !important;
		-ms-flex-direction: column-reverse !important;
		flex-direction: column-reverse !important;
	}
	.flex-sm-wrap {
		-ms-flex-wrap: wrap !important;
		flex-wrap: wrap !important;
	}
	.flex-sm-nowrap {
		-ms-flex-wrap: nowrap !important;
		flex-wrap: nowrap !important;
	}
	.flex-sm-wrap-reverse {
		-ms-flex-wrap: wrap-reverse !important;
		flex-wrap: wrap-reverse !important;
	}
	.justify-content-sm-start {
		-webkit-box-pack: start !important;
		-ms-flex-pack: start !important;
		justify-content: flex-start !important;
	}
	.justify-content-sm-end {
		-webkit-box-pack: end !important;
		-ms-flex-pack: end !important;
		justify-content: flex-end !important;
	}
	.justify-content-sm-center {
		-webkit-box-pack: center !important;
		-ms-flex-pack: center !important;
		justify-content: center !important;
	}
	.justify-content-sm-between {
		-webkit-box-pack: justify !important;
		-ms-flex-pack: justify !important;
		justify-content: space-between !important;
	}
	.justify-content-sm-around {
		-ms-flex-pack: distribute !important;
		justify-content: space-around !important;
	}
	.align-items-sm-start {
		-webkit-box-align: start !important;
		-ms-flex-align: start !important;
		align-items: flex-start !important;
	}
	.align-items-sm-end {
		-webkit-box-align: end !important;
		-ms-flex-align: end !important;
		align-items: flex-end !important;
	}
	.align-items-sm-center {
		-webkit-box-align: center !important;
		-ms-flex-align: center !important;
		align-items: center !important;
	}
	.align-items-sm-baseline {
		-webkit-box-align: baseline !important;
		-ms-flex-align: baseline !important;
		align-items: baseline !important;
	}
	.align-items-sm-stretch {
		-webkit-box-align: stretch !important;
		-ms-flex-align: stretch !important;
		align-items: stretch !important;
	}
	.align-content-sm-start {
		-ms-flex-line-pack: start !important;
		align-content: flex-start !important;
	}
	.align-content-sm-end {
		-ms-flex-line-pack: end !important;
		align-content: flex-end !important;
	}
	.align-content-sm-center {
		-ms-flex-line-pack: center !important;
		align-content: center !important;
	}
	.align-content-sm-between {
		-ms-flex-line-pack: justify !important;
		align-content: space-between !important;
	}
	.align-content-sm-around {
		-ms-flex-line-pack: distribute !important;
		align-content: space-around !important;
	}
	.align-content-sm-stretch {
		-ms-flex-line-pack: stretch !important;
		align-content: stretch !important;
	}
	.align-self-sm-auto {
		-ms-flex-item-align: auto !important;
		align-self: auto !important;
	}
	.align-self-sm-start {
		-ms-flex-item-align: start !important;
		align-self: flex-start !important;
	}
	.align-self-sm-end {
		-ms-flex-item-align: end !important;
		align-self: flex-end !important;
	}
	.align-self-sm-center {
		-ms-flex-item-align: center !important;
		align-self: center !important;
	}
	.align-self-sm-baseline {
		-ms-flex-item-align: baseline !important;
		align-self: baseline !important;
	}
	.align-self-sm-stretch {
		-ms-flex-item-align: stretch !important;
		align-self: stretch !important;
	}
}

@media (min-width: 768px) {
	.flex-md-row {
		-webkit-box-orient: horizontal !important;
		-webkit-box-direction: normal !important;
		-ms-flex-direction: row !important;
		flex-direction: row !important;
	}
	.flex-md-column {
		-webkit-box-orient: vertical !important;
		-webkit-box-direction: normal !important;
		-ms-flex-direction: column !important;
		flex-direction: column !important;
	}
	.flex-md-row-reverse {
		-webkit-box-orient: horizontal !important;
		-webkit-box-direction: reverse !important;
		-ms-flex-direction: row-reverse !important;
		flex-direction: row-reverse !important;
	}
	.flex-md-column-reverse {
		-webkit-box-orient: vertical !important;
		-webkit-box-direction: reverse !important;
		-ms-flex-direction: column-reverse !important;
		flex-direction: column-reverse !important;
	}
	.flex-md-wrap {
		-ms-flex-wrap: wrap !important;
		flex-wrap: wrap !important;
	}
	.flex-md-nowrap {
		-ms-flex-wrap: nowrap !important;
		flex-wrap: nowrap !important;
	}
	.flex-md-wrap-reverse {
		-ms-flex-wrap: wrap-reverse !important;
		flex-wrap: wrap-reverse !important;
	}
	.justify-content-md-start {
		-webkit-box-pack: start !important;
		-ms-flex-pack: start !important;
		justify-content: flex-start !important;
	}
	.justify-content-md-end {
		-webkit-box-pack: end !important;
		-ms-flex-pack: end !important;
		justify-content: flex-end !important;
	}
	.justify-content-md-center {
		-webkit-box-pack: center !important;
		-ms-flex-pack: center !important;
		justify-content: center !important;
	}
	.justify-content-md-between {
		-webkit-box-pack: justify !important;
		-ms-flex-pack: justify !important;
		justify-content: space-between !important;
	}
	.justify-content-md-around {
		-ms-flex-pack: distribute !important;
		justify-content: space-around !important;
	}
	.align-items-md-start {
		-webkit-box-align: start !important;
		-ms-flex-align: start !important;
		align-items: flex-start !important;
	}
	.align-items-md-end {
		-webkit-box-align: end !important;
		-ms-flex-align: end !important;
		align-items: flex-end !important;
	}
	.align-items-md-center {
		-webkit-box-align: center !important;
		-ms-flex-align: center !important;
		align-items: center !important;
	}
	.align-items-md-baseline {
		-webkit-box-align: baseline !important;
		-ms-flex-align: baseline !important;
		align-items: baseline !important;
	}
	.align-items-md-stretch {
		-webkit-box-align: stretch !important;
		-ms-flex-align: stretch !important;
		align-items: stretch !important;
	}
	.align-content-md-start {
		-ms-flex-line-pack: start !important;
		align-content: flex-start !important;
	}
	.align-content-md-end {
		-ms-flex-line-pack: end !important;
		align-content: flex-end !important;
	}
	.align-content-md-center {
		-ms-flex-line-pack: center !important;
		align-content: center !important;
	}
	.align-content-md-between {
		-ms-flex-line-pack: justify !important;
		align-content: space-between !important;
	}
	.align-content-md-around {
		-ms-flex-line-pack: distribute !important;
		align-content: space-around !important;
	}
	.align-content-md-stretch {
		-ms-flex-line-pack: stretch !important;
		align-content: stretch !important;
	}
	.align-self-md-auto {
		-ms-flex-item-align: auto !important;
		align-self: auto !important;
	}
	.align-self-md-start {
		-ms-flex-item-align: start !important;
		align-self: flex-start !important;
	}
	.align-self-md-end {
		-ms-flex-item-align: end !important;
		align-self: flex-end !important;
	}
	.align-self-md-center {
		-ms-flex-item-align: center !important;
		align-self: center !important;
	}
	.align-self-md-baseline {
		-ms-flex-item-align: baseline !important;
		align-self: baseline !important;
	}
	.align-self-md-stretch {
		-ms-flex-item-align: stretch !important;
		align-self: stretch !important;
	}
}

@media (min-width: 992px) {
	.flex-lg-row {
		-webkit-box-orient: horizontal !important;
		-webkit-box-direction: normal !important;
		-ms-flex-direction: row !important;
		flex-direction: row !important;
	}
	.flex-lg-column {
		-webkit-box-orient: vertical !important;
		-webkit-box-direction: normal !important;
		-ms-flex-direction: column !important;
		flex-direction: column !important;
	}
	.flex-lg-row-reverse {
		-webkit-box-orient: horizontal !important;
		-webkit-box-direction: reverse !important;
		-ms-flex-direction: row-reverse !important;
		flex-direction: row-reverse !important;
	}
	.flex-lg-column-reverse {
		-webkit-box-orient: vertical !important;
		-webkit-box-direction: reverse !important;
		-ms-flex-direction: column-reverse !important;
		flex-direction: column-reverse !important;
	}
	.flex-lg-wrap {
		-ms-flex-wrap: wrap !important;
		flex-wrap: wrap !important;
	}
	.flex-lg-nowrap {
		-ms-flex-wrap: nowrap !important;
		flex-wrap: nowrap !important;
	}
	.flex-lg-wrap-reverse {
		-ms-flex-wrap: wrap-reverse !important;
		flex-wrap: wrap-reverse !important;
	}
	.justify-content-lg-start {
		-webkit-box-pack: start !important;
		-ms-flex-pack: start !important;
		justify-content: flex-start !important;
	}
	.justify-content-lg-end {
		-webkit-box-pack: end !important;
		-ms-flex-pack: end !important;
		justify-content: flex-end !important;
	}
	.justify-content-lg-center {
		-webkit-box-pack: center !important;
		-ms-flex-pack: center !important;
		justify-content: center !important;
	}
	.justify-content-lg-between {
		-webkit-box-pack: justify !important;
		-ms-flex-pack: justify !important;
		justify-content: space-between !important;
	}
	.justify-content-lg-around {
		-ms-flex-pack: distribute !important;
		justify-content: space-around !important;
	}
	.align-items-lg-start {
		-webkit-box-align: start !important;
		-ms-flex-align: start !important;
		align-items: flex-start !important;
	}
	.align-items-lg-end {
		-webkit-box-align: end !important;
		-ms-flex-align: end !important;
		align-items: flex-end !important;
	}
	.align-items-lg-center {
		-webkit-box-align: center !important;
		-ms-flex-align: center !important;
		align-items: center !important;
	}
	.align-items-lg-baseline {
		-webkit-box-align: baseline !important;
		-ms-flex-align: baseline !important;
		align-items: baseline !important;
	}
	.align-items-lg-stretch {
		-webkit-box-align: stretch !important;
		-ms-flex-align: stretch !important;
		align-items: stretch !important;
	}
	.align-content-lg-start {
		-ms-flex-line-pack: start !important;
		align-content: flex-start !important;
	}
	.align-content-lg-end {
		-ms-flex-line-pack: end !important;
		align-content: flex-end !important;
	}
	.align-content-lg-center {
		-ms-flex-line-pack: center !important;
		align-content: center !important;
	}
	.align-content-lg-between {
		-ms-flex-line-pack: justify !important;
		align-content: space-between !important;
	}
	.align-content-lg-around {
		-ms-flex-line-pack: distribute !important;
		align-content: space-around !important;
	}
	.align-content-lg-stretch {
		-ms-flex-line-pack: stretch !important;
		align-content: stretch !important;
	}
	.align-self-lg-auto {
		-ms-flex-item-align: auto !important;
		align-self: auto !important;
	}
	.align-self-lg-start {
		-ms-flex-item-align: start !important;
		align-self: flex-start !important;
	}
	.align-self-lg-end {
		-ms-flex-item-align: end !important;
		align-self: flex-end !important;
	}
	.align-self-lg-center {
		-ms-flex-item-align: center !important;
		align-self: center !important;
	}
	.align-self-lg-baseline {
		-ms-flex-item-align: baseline !important;
		align-self: baseline !important;
	}
	.align-self-lg-stretch {
		-ms-flex-item-align: stretch !important;
		align-self: stretch !important;
	}
}

@media (min-width: 1200px) {
	.flex-xl-row {
		-webkit-box-orient: horizontal !important;
		-webkit-box-direction: normal !important;
		-ms-flex-direction: row !important;
		flex-direction: row !important;
	}
	.flex-xl-column {
		-webkit-box-orient: vertical !important;
		-webkit-box-direction: normal !important;
		-ms-flex-direction: column !important;
		flex-direction: column !important;
	}
	.flex-xl-row-reverse {
		-webkit-box-orient: horizontal !important;
		-webkit-box-direction: reverse !important;
		-ms-flex-direction: row-reverse !important;
		flex-direction: row-reverse !important;
	}
	.flex-xl-column-reverse {
		-webkit-box-orient: vertical !important;
		-webkit-box-direction: reverse !important;
		-ms-flex-direction: column-reverse !important;
		flex-direction: column-reverse !important;
	}
	.flex-xl-wrap {
		-ms-flex-wrap: wrap !important;
		flex-wrap: wrap !important;
	}
	.flex-xl-nowrap {
		-ms-flex-wrap: nowrap !important;
		flex-wrap: nowrap !important;
	}
	.flex-xl-wrap-reverse {
		-ms-flex-wrap: wrap-reverse !important;
		flex-wrap: wrap-reverse !important;
	}
	.justify-content-xl-start {
		-webkit-box-pack: start !important;
		-ms-flex-pack: start !important;
		justify-content: flex-start !important;
	}
	.justify-content-xl-end {
		-webkit-box-pack: end !important;
		-ms-flex-pack: end !important;
		justify-content: flex-end !important;
	}
	.justify-content-xl-center {
		-webkit-box-pack: center !important;
		-ms-flex-pack: center !important;
		justify-content: center !important;
	}
	.justify-content-xl-between {
		-webkit-box-pack: justify !important;
		-ms-flex-pack: justify !important;
		justify-content: space-between !important;
	}
	.justify-content-xl-around {
		-ms-flex-pack: distribute !important;
		justify-content: space-around !important;
	}
	.align-items-xl-start {
		-webkit-box-align: start !important;
		-ms-flex-align: start !important;
		align-items: flex-start !important;
	}
	.align-items-xl-end {
		-webkit-box-align: end !important;
		-ms-flex-align: end !important;
		align-items: flex-end !important;
	}
	.align-items-xl-center {
		-webkit-box-align: center !important;
		-ms-flex-align: center !important;
		align-items: center !important;
	}
	.align-items-xl-baseline {
		-webkit-box-align: baseline !important;
		-ms-flex-align: baseline !important;
		align-items: baseline !important;
	}
	.align-items-xl-stretch {
		-webkit-box-align: stretch !important;
		-ms-flex-align: stretch !important;
		align-items: stretch !important;
	}
	.align-content-xl-start {
		-ms-flex-line-pack: start !important;
		align-content: flex-start !important;
	}
	.align-content-xl-end {
		-ms-flex-line-pack: end !important;
		align-content: flex-end !important;
	}
	.align-content-xl-center {
		-ms-flex-line-pack: center !important;
		align-content: center !important;
	}
	.align-content-xl-between {
		-ms-flex-line-pack: justify !important;
		align-content: space-between !important;
	}
	.align-content-xl-around {
		-ms-flex-line-pack: distribute !important;
		align-content: space-around !important;
	}
	.align-content-xl-stretch {
		-ms-flex-line-pack: stretch !important;
		align-content: stretch !important;
	}
	.align-self-xl-auto {
		-ms-flex-item-align: auto !important;
		align-self: auto !important;
	}
	.align-self-xl-start {
		-ms-flex-item-align: start !important;
		align-self: flex-start !important;
	}
	.align-self-xl-end {
		-ms-flex-item-align: end !important;
		align-self: flex-end !important;
	}
	.align-self-xl-center {
		-ms-flex-item-align: center !important;
		align-self: center !important;
	}
	.align-self-xl-baseline {
		-ms-flex-item-align: baseline !important;
		align-self: baseline !important;
	}
	.align-self-xl-stretch {
		-ms-flex-item-align: stretch !important;
		align-self: stretch !important;
	}
}

/*--------------------------------------------------------------
5.0 Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	height: 1px;
	overflow: hidden;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
	/* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	-webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
	/* Above WP toolbar. */
}

/*--------------------------------------------------------------
6.0 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-left: auto;
	margin-right: auto;
}

/*--------------------------------------------------------------
7.0 Typography
--------------------------------------------------------------*/
html {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body,
button,
input,
select,
textarea {
	color: #222222;
	font-family: "Cabin", sans-serif;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1.4;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 20px;
	font-weight: 600;
	line-height: 1.2;
}

p {
	margin: 0 0 25px;
}

h1 {
	font-size: 44px;
	font-size: 2.75rem;
}

@media screen and (min-width: 768px) {
	h1 {
		font-size: 60px;
		font-size: 3.75rem;
	}
}

h2 {
	font-size: 38px;
	font-size: 2.375rem;
}

@media screen and (min-width: 768px) {
	h2 {
		font-size: 50px;
		font-size: 3.125rem;
	}
}

h3 {
	font-size: 28px;
	font-size: 1.75rem;
}

@media screen and (min-width: 768px) {
	h3 {
		font-size: 40px;
		font-size: 2.5rem;
	}
}

h4 {
	font-size: 24px;
	font-size: 1.5rem;
}

@media screen and (min-width: 768px) {
	h4 {
		font-size: 30px;
		font-size: 1.875rem;
	}
}

h5 {
	font-size: 20px;
	font-size: 1.25rem;
}

h6 {
	font-size: 16px;
	font-size: 1rem;
}

/*--------------------------------------------------------------
8.0 Form
--------------------------------------------------------------*/
/*
 * Completely resets form items
 * ----------------------------
 * Super hard reset that removes all borders
 *   and radiuses of all form items (including
 *   checkboxes and radios)
 */
input,
textarea,
button {
	border: 0;
	border-radius: 0;
	background-color: transparent;
	font-size: inherit;
	font-family: inherit;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	text-align: left;
}

textarea {
	max-width: 100%;
}

label,
.form-label {
	display: block;
	margin-bottom: 10px;
	font-size: 14px;
	font-size: 0.875rem;
}

fieldset {
	margin-bottom: 1rem;
}

.form-container {
	border-radius: 3px;
	padding: 40px 30px;
	-webkit-box-shadow: 0px 5px 11.64px 0.36px rgba(0, 0, 0, 0.13);
	box-shadow: 0px 5px 11.64px 0.36px rgba(0, 0, 0, 0.13);
}

.form-title {
	font-size: 28px;
	font-size: 1.75rem;
	margin-bottom: 25px;
}

.form-social {
	padding-bottom: 10px;
	border-bottom: 1px solid #eeeeee;
	margin-bottom: 25px;
}

.form-input {
	display: block;
	width: 100%;
	padding: 10px 15px;
	border: 1px solid transparent;
	background: #ffffff;
	color: #222222;
	border-radius: 3px;
	-webkit-box-shadow: none;
	box-shadow: none;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.form-input--large {
	padding-top: 12px;
	padding-bottom: 12px;
}

.form-input--pill {
	border-radius: 20px;
}

.form-input--border-c-gallery {
	border-color: #eeeeee;
}

.form-input--border-c-alto {
	border-color: #dddddd;
}

.form-input--social {
	padding-right: 65px;
}

.form-input--no-br {
	border-radius: 0;
}

.form-group {
	margin-bottom: 15px;
}

.form-group__title {
	font-size: 16px;
	font-size: 1rem;
	margin-bottom: 15px;
}

@media screen and (min-width: 768px) {
	.form-group__title {
		margin-top: 15px;
	}
}

.form-group__wrapper {
	position: relative;
}

.form-group__action {
	position: absolute;
	top: 50%;
	right: 5px;
	display: inline-block;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.form-group__icon {
	font-size: 16px;
	font-size: 1rem;
	display: inline-block;
	position: absolute;
	top: 50%;
	right: 0;
	height: 100%;
	width: 50px;
	border-left: 1px solid #dddddd;
	color: #999999;
	line-height: 45px;
	text-align: center;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.form-group__icon--social {
	border-left-color: rgba(255, 255, 255, 0.15);
}

.form-group--submit {
	padding-top: 10px;
}

.form-group--footer {
	padding-top: 20px;
}

.form-group__container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

textarea {
	overflow: auto;
}

.button {
	display: inline-block;
	border: 1px solid transparent;
	font-weight: 600;
	text-align: center;
	cursor: pointer;
}

.button--primary {
	background-color: #fcc400;
	color: #222222;
}

.button--secondary {
	background-color: #222222;
	color: #ffffff;
}

.button--small {
	padding: 8px 28px;
}

.button--medium {
	padding: 10px 40px;
}

.button--large {
	padding: 12px 48px;
}

.button--square {
	border-radius: 3px;
}

.button--pill {
	border-radius: 20px;
}

.button--block {
	display: block;
	width: 100%;
}

.button--facebook {
	background-color: #3b5998;
	color: #ffffff;
}

.button--twitter {
	background-color: #55acee;
	color: #ffffff;
}

.button--like {
	border-radius: 50%;
	width: 28px;
	height: 28px;
	background-color: #dddddd;
	text-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.button--listing-action {
	padding-right: 20px;
	padding-left: 20px;
	border: 1px solid #eeeeee;
}

@media screen and (min-width: 992px) {
	.button--listing-action {
		padding-right: 30px;
		padding-left: 30px;
	}
}

.search-form {
	display: none;
}

@media screen and (min-width: 1400px) {
	.search-form {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
}

.search-form .form-group__wrapper:first-of-type {
	border-right: 1px solid #eeeeee;
}

.search-form .form-group__wrapper:first-of-type > * {
	border-top-left-radius: 20px;
	border-bottom-left-radius: 20px;
}

.search-form .form-group__wrapper:last-of-type > * {
	border-top-right-radius: 20px;
	border-bottom-right-radius: 20px;
}

.action {
	cursor: pointer;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.edit:hover {
	color: #fcc400;
}

.remove:hover {
	color: #f15636;
}

.icheck_label {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.icheck_label .icheckbox_flat-yellow,
.icheck_label .iradio_flat-yellow {
	margin-right: 5px;
}

.form-login__block {
	display: none;
}

.form-login__block.is-selected {
	display: block;
}

/*--------------------------------------------------------------
9.0 Tables
--------------------------------------------------------------*/
table {
	border-collapse: collapse;
	margin: 0 0 1.5rem;
	/* Prevents HTML tables from becoming too wide */
	width: 100%;
}

thead th {
	border-bottom: 2px solid #666666;
	padding-bottom: 0.5rem;
}

th {
	padding: 0.4rem;
	text-align: left;
}

tr {
	border-bottom: 1px solid #eeeeee;
}

td {
	padding: 0.4rem;
}

th:first-child,
td:first-child {
	padding-left: 0;
}

th:last-child,
td:last-child {
	padding-right: 0;
}

/*--------------------------------------------------------------
10.0 Formatting
--------------------------------------------------------------*/
img {
	display: block;
	max-width: 100%;
}

figure {
	margin: 0;
}

hr {
	height: 1px;
	margin-bottom: 1.5rem;
	border: 0;
	background-color: #666666;
}

/*--------------------------------------------------------------
11.0 Lists
--------------------------------------------------------------*/
ul,
ol {
	margin: 0 0 1.5rem;
	padding: 0;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5rem;
}

dt {
	font-weight: 700;
}

dd {
	margin: 0 1.5rem 1.5rem;
}

.min-list {
	margin: 0;
	padding: 0;
}

.min-list li {
	list-style: none;
}

.inline-list li {
	display: inline-block;
}

/*--------------------------------------------------------------
12.0 Links
--------------------------------------------------------------*/
a {
	color: #222222;
	text-decoration: none;
	-webkit-transition: 0.3s all ease-out;
	transition: 0.3s all ease-out;
}

a:hover,
a:focus,
a:active {
	color: #fcc400;
}

a:focus {
	outline: thin dotted;
}

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

/*--------------------------------------------------------------
13.0 Navigation
--------------------------------------------------------------*/
.page-numbers {
	border-radius: 3px;
	display: inline-block;
	border: 1px solid transparent;
	text-align: center;
}

.page-numbers:not(:last-child) {
	margin-right: 5px;
}

.page-navigation-container {
	padding-top: 50px;
}

.page-navigation-container .page-numbers {
	height: 40px;
	padding-right: 17px;
	padding-left: 17px;
	border: 1px solid #e5e5e5;
	line-height: 40px;
}

.page-navigation-container .page-numbers:hover {
	border: 1px solid #fcc400;
	background-color: #fcc400;
	color: #222222;
}

.page-navigation-container .page-numbers.current {
	border: 1px solid #fcc400;
	background-color: #fcc400;
}

.listing-pagination .page-numbers {
	font-size: 16px;
	font-size: 1rem;
	height: 36px;
	padding-right: 15px;
	padding-left: 15px;
	background-color: #f6f6f6;
	border-color: #eeeeee;
	line-height: 36px;
}

.listing-pagination .page-numbers:hover {
	border-color: #444444;
	background-color: #444444;
	color: #ffffff;
}

.listing-pagination .page-numbers.current {
	border-color: #444444;
	background-color: #444444;
	color: #ffffff;
}

.nav-links {
	padding-bottom: 25px;
	margin-bottom: 40px;
	border-bottom: 1px solid #dddddd;
}

@media screen and (min-width: 768px) {
	.nav-links {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		padding-bottom: 40px;
	}
}

.nav-links > * {
	margin-bottom: 15px;
}

@media screen and (min-width: 768px) {
	.nav-links > * {
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
		margin-bottom: 0;
	}
}

.nav-link {
	position: relative;
}

@media screen and (min-width: 768px) {
	.nav-link:before {
		font-size: 25px;
		font-size: 1.5625rem;
		position: absolute;
		top: 50%;
		display: inline-block;
		font-family: "Ionicons";
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
	}
}

@media screen and (min-width: 768px) {
	.nav-previous {
		padding-right: 25px;
	}
	.nav-previous:before {
		content: "\f3d2";
		left: -40px;
	}
}

@media screen and (min-width: 768px) {
	.nav-next {
		padding-left: 25px;
		text-align: right;
	}
	.nav-next:before {
		content: "\f3d3";
		right: -40px;
	}
}

.nav-link-title {
	font-size: 20px;
	font-size: 1.25rem;
	margin-bottom: 0;
}

@media screen and (min-width: 768px) {
	.nav-link-text {
		display: none;
	}
}

/*--------------------------------------------------------------
14.0 Comments
--------------------------------------------------------------*/
.comments-wrap:not(:last-child) {
	margin-bottom: 50px;
	padding-bottom: 50px;
	border-bottom: 1px solid #dddddd;
}

.comments-title {
	font-size: 24px;
	font-size: 1.5rem;
	margin-bottom: 40px;
}

.comment:not(:last-child) {
	margin-bottom: 50px;
}

.comment-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.comment-avatar {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	display: none;
	max-width: 70px;
	border-radius: 50%;
	margin-right: 20px;
}

@media screen and (min-width: 768px) {
	.comment-avatar {
		display: block;
	}
}

.comment-content {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.comment .children {
	margin-top: 50px;
}

.comment-author {
	font-size: 18px;
	font-size: 1.125rem;
	margin-bottom: 5px;
}

@media screen and (min-width: 576px) {
	.comment-author {
		margin-bottom: 0;
	}
}

.comment-header {
	margin-bottom: 20px;
}

@media screen and (min-width: 576px) {
	.comment-header {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
}

.comment-reply {
	font-weight: 700;
	text-transform: uppercase;
	text-decoration: underline;
}

/*--------------------------------------------------------------
15.0 Widgets
--------------------------------------------------------------*/
/*--------------------------------------------------------------
16.0 Libraries
--------------------------------------------------------------*/
/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
	font-family: "FontAwesome";
	src: url("../fonts/fontawesome-webfont3e6e.eot?v=4.7.0");
	src:
		url("../fonts/fontawesome-webfontd41d.eot?#iefix&v=4.7.0")
			format("embedded-opentype"),
		url("../fonts/fontawesome-webfont3e6e.woff2?v=4.7.0") format("woff2"),
		url("../fonts/fontawesome-webfont3e6e.woff?v=4.7.0") format("woff"),
		url("../fonts/fontawesome-webfont3e6e.ttf?v=4.7.0") format("truetype"),
		url("../fonts/fontawesome-webfont3e6e.svg?v=4.7.0#fontawesomeregular")
			format("svg");
	font-weight: normal;
	font-style: normal;
}

.fa {
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* makes the font 33% larger relative to the icon container */
.fa-lg {
	font-size: 1.33333em;
	line-height: 0.75em;
	vertical-align: -15%;
}

.fa-2x {
	font-size: 2em;
}

.fa-3x {
	font-size: 3em;
}

.fa-4x {
	font-size: 4em;
}

.fa-5x {
	font-size: 5em;
}

.fa-fw {
	width: 1.28571em;
	text-align: center;
}

.fa-ul {
	padding-left: 0;
	margin-left: 2.14286em;
	list-style-type: none;
}

.fa-ul > li {
	position: relative;
}

.fa-li {
	position: absolute;
	left: -2.14286em;
	width: 2.14286em;
	top: 0.14286em;
	text-align: center;
}

.fa-li.fa-lg {
	left: -1.85714em;
}

.fa-border {
	padding: 0.2em 0.25em 0.15em;
	border: solid 0.08em #eee;
	border-radius: 0.1em;
}

.fa-pull-left {
	float: left;
}

.fa-pull-right {
	float: right;
}

.fa.fa-pull-left {
	margin-right: 0.3em;
}

.fa.fa-pull-right {
	margin-left: 0.3em;
}

/* Deprecated as of 4.4.0 */
.pull-right {
	float: right;
}

.pull-left {
	float: left;
}

.fa.pull-left {
	margin-right: 0.3em;
}

.fa.pull-right {
	margin-left: 0.3em;
}

.fa-spin {
	-webkit-animation: fa-spin 2s infinite linear;
	animation: fa-spin 2s infinite linear;
}

.fa-pulse {
	-webkit-animation: fa-spin 1s infinite steps(8);
	animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(359deg);
		transform: rotate(359deg);
	}
}

@keyframes fa-spin {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(359deg);
		transform: rotate(359deg);
	}
}

.fa-rotate-90 {
	-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}

.fa-rotate-180 {
	-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}

.fa-rotate-270 {
	-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
	-webkit-transform: rotate(270deg);
	transform: rotate(270deg);
}

.fa-flip-horizontal {
	-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
	-webkit-transform: scale(-1, 1);
	transform: scale(-1, 1);
}

.fa-flip-vertical {
	-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
	-webkit-transform: scale(1, -1);
	transform: scale(1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
	-webkit-filter: none;
	filter: none;
}

.fa-stack {
	position: relative;
	display: inline-block;
	width: 2em;
	height: 2em;
	line-height: 2em;
	vertical-align: middle;
}

.fa-stack-1x,
.fa-stack-2x {
	position: absolute;
	left: 0;
	width: 100%;
	text-align: center;
}

.fa-stack-1x {
	line-height: inherit;
}

.fa-stack-2x {
	font-size: 2em;
}

.fa-inverse {
	color: #fff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
	content: "";
}

.fa-music:before {
	content: "";
}

.fa-search:before {
	content: "";
}

.fa-envelope-o:before {
	content: "";
}

.fa-heart:before {
	content: "";
}

.fa-star:before {
	content: "";
}

.fa-star-o:before {
	content: "";
}

.fa-user:before {
	content: "";
}

.fa-film:before {
	content: "";
}

.fa-th-large:before {
	content: "";
}

.fa-th:before {
	content: "";
}

.fa-th-list:before {
	content: "";
}

.fa-check:before {
	content: "";
}

.fa-remove:before,
.fa-close:before,
.fa-times:before {
	content: "";
}

.fa-search-plus:before {
	content: "";
}

.fa-search-minus:before {
	content: "";
}

.fa-power-off:before {
	content: "";
}

.fa-signal:before {
	content: "";
}

.fa-gear:before,
.fa-cog:before {
	content: "";
}

.fa-trash-o:before {
	content: "";
}

.fa-home:before {
	content: "";
}

.fa-file-o:before {
	content: "";
}

.fa-clock-o:before {
	content: "";
}

.fa-road:before {
	content: "";
}

.fa-download:before {
	content: "";
}

.fa-arrow-circle-o-down:before {
	content: "";
}

.fa-arrow-circle-o-up:before {
	content: "";
}

.fa-inbox:before {
	content: "";
}

.fa-play-circle-o:before {
	content: "";
}

.fa-rotate-right:before,
.fa-repeat:before {
	content: "";
}

.fa-refresh:before {
	content: "";
}

.fa-list-alt:before {
	content: "";
}

.fa-lock:before {
	content: "";
}

.fa-flag:before {
	content: "";
}

.fa-headphones:before {
	content: "";
}

.fa-volume-off:before {
	content: "";
}

.fa-volume-down:before {
	content: "";
}

.fa-volume-up:before {
	content: "";
}

.fa-qrcode:before {
	content: "";
}

.fa-barcode:before {
	content: "";
}

.fa-tag:before {
	content: "";
}

.fa-tags:before {
	content: "";
}

.fa-book:before {
	content: "";
}

.fa-bookmark:before {
	content: "";
}

.fa-print:before {
	content: "";
}

.fa-camera:before {
	content: "";
}

.fa-font:before {
	content: "";
}

.fa-bold:before {
	content: "";
}

.fa-italic:before {
	content: "";
}

.fa-text-height:before {
	content: "";
}

.fa-text-width:before {
	content: "";
}

.fa-align-left:before {
	content: "";
}

.fa-align-center:before {
	content: "";
}

.fa-align-right:before {
	content: "";
}

.fa-align-justify:before {
	content: "";
}

.fa-list:before {
	content: "";
}

.fa-dedent:before,
.fa-outdent:before {
	content: "";
}

.fa-indent:before {
	content: "";
}

.fa-video-camera:before {
	content: "";
}

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
	content: "";
}

.fa-pencil:before {
	content: "";
}

.fa-map-marker:before {
	content: "";
}

.fa-adjust:before {
	content: "";
}

.fa-tint:before {
	content: "";
}

.fa-edit:before,
.fa-pencil-square-o:before {
	content: "";
}

.fa-share-square-o:before {
	content: "";
}

.fa-check-square-o:before {
	content: "";
}

.fa-arrows:before {
	content: "";
}

.fa-step-backward:before {
	content: "";
}

.fa-fast-backward:before {
	content: "";
}

.fa-backward:before {
	content: "";
}

.fa-play:before {
	content: "";
}

.fa-pause:before {
	content: "";
}

.fa-stop:before {
	content: "";
}

.fa-forward:before {
	content: "";
}

.fa-fast-forward:before {
	content: "";
}

.fa-step-forward:before {
	content: "";
}

.fa-eject:before {
	content: "";
}

.fa-chevron-left:before {
	content: "";
}

.fa-chevron-right:before {
	content: "";
}

.fa-plus-circle:before {
	content: "";
}

.fa-minus-circle:before {
	content: "";
}

.fa-times-circle:before {
	content: "";
}

.fa-check-circle:before {
	content: "";
}

.fa-question-circle:before {
	content: "";
}

.fa-info-circle:before {
	content: "";
}

.fa-crosshairs:before {
	content: "";
}

.fa-times-circle-o:before {
	content: "";
}

.fa-check-circle-o:before {
	content: "";
}

.fa-ban:before {
	content: "";
}

.fa-arrow-left:before {
	content: "";
}

.fa-arrow-right:before {
	content: "";
}

.fa-arrow-up:before {
	content: "";
}

.fa-arrow-down:before {
	content: "";
}

.fa-mail-forward:before,
.fa-share:before {
	content: "";
}

.fa-expand:before {
	content: "";
}

.fa-compress:before {
	content: "";
}

.fa-plus:before {
	content: "";
}

.fa-minus:before {
	content: "";
}

.fa-asterisk:before {
	content: "";
}

.fa-exclamation-circle:before {
	content: "";
}

.fa-gift:before {
	content: "";
}

.fa-leaf:before {
	content: "";
}

.fa-fire:before {
	content: "";
}

.fa-eye:before {
	content: "";
}

.fa-eye-slash:before {
	content: "";
}

.fa-warning:before,
.fa-exclamation-triangle:before {
	content: "";
}

.fa-plane:before {
	content: "";
}

.fa-calendar:before {
	content: "";
}

.fa-random:before {
	content: "";
}

.fa-comment:before {
	content: "";
}

.fa-magnet:before {
	content: "";
}

.fa-chevron-up:before {
	content: "";
}

.fa-chevron-down:before {
	content: "";
}

.fa-retweet:before {
	content: "";
}

.fa-shopping-cart:before {
	content: "";
}

.fa-folder:before {
	content: "";
}

.fa-folder-open:before {
	content: "";
}

.fa-arrows-v:before {
	content: "";
}

.fa-arrows-h:before {
	content: "";
}

.fa-bar-chart-o:before,
.fa-bar-chart:before {
	content: "";
}

.fa-twitter-square:before {
	content: "";
}

.fa-facebook-square:before {
	content: "";
}

.fa-camera-retro:before {
	content: "";
}

.fa-key:before {
	content: "";
}

.fa-gears:before,
.fa-cogs:before {
	content: "";
}

.fa-comments:before {
	content: "";
}

.fa-thumbs-o-up:before {
	content: "";
}

.fa-thumbs-o-down:before {
	content: "";
}

.fa-star-half:before {
	content: "";
}

.fa-heart-o:before {
	content: "";
}

.fa-sign-out:before {
	content: "";
}

.fa-linkedin-square:before {
	content: "";
}

.fa-thumb-tack:before {
	content: "";
}

.fa-external-link:before {
	content: "";
}

.fa-sign-in:before {
	content: "";
}

.fa-trophy:before {
	content: "";
}

.fa-github-square:before {
	content: "";
}

.fa-upload:before {
	content: "";
}

.fa-lemon-o:before {
	content: "";
}

.fa-phone:before {
	content: "";
}

.fa-square-o:before {
	content: "";
}

.fa-bookmark-o:before {
	content: "";
}

.fa-phone-square:before {
	content: "";
}

.fa-twitter:before {
	content: "";
}

.fa-facebook-f:before,
.fa-facebook:before {
	content: "";
}

.fa-github:before {
	content: "";
}

.fa-unlock:before {
	content: "";
}

.fa-credit-card:before {
	content: "";
}

.fa-feed:before,
.fa-rss:before {
	content: "";
}

.fa-hdd-o:before {
	content: "";
}

.fa-bullhorn:before {
	content: "";
}

.fa-bell:before {
	content: "";
}

.fa-certificate:before {
	content: "";
}

.fa-hand-o-right:before {
	content: "";
}

.fa-hand-o-left:before {
	content: "";
}

.fa-hand-o-up:before {
	content: "";
}

.fa-hand-o-down:before {
	content: "";
}

.fa-arrow-circle-left:before {
	content: "";
}

.fa-arrow-circle-right:before {
	content: "";
}

.fa-arrow-circle-up:before {
	content: "";
}

.fa-arrow-circle-down:before {
	content: "";
}

.fa-globe:before {
	content: "";
}

.fa-wrench:before {
	content: "";
}

.fa-tasks:before {
	content: "";
}

.fa-filter:before {
	content: "";
}

.fa-briefcase:before {
	content: "";
}

.fa-arrows-alt:before {
	content: "";
}

.fa-group:before,
.fa-users:before {
	content: "";
}

.fa-chain:before,
.fa-link:before {
	content: "";
}

.fa-cloud:before {
	content: "";
}

.fa-flask:before {
	content: "";
}

.fa-cut:before,
.fa-scissors:before {
	content: "";
}

.fa-copy:before,
.fa-files-o:before {
	content: "";
}

.fa-paperclip:before {
	content: "";
}

.fa-save:before,
.fa-floppy-o:before {
	content: "";
}

.fa-square:before {
	content: "";
}

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
	content: "";
}

.fa-list-ul:before {
	content: "";
}

.fa-list-ol:before {
	content: "";
}

.fa-strikethrough:before {
	content: "";
}

.fa-underline:before {
	content: "";
}

.fa-table:before {
	content: "";
}

.fa-magic:before {
	content: "";
}

.fa-truck:before {
	content: "";
}

.fa-pinterest:before {
	content: "";
}

.fa-pinterest-square:before {
	content: "";
}

.fa-google-plus-square:before {
	content: "";
}

.fa-google-plus:before {
	content: "";
}

.fa-money:before {
	content: "";
}

.fa-caret-down:before {
	content: "";
}

.fa-caret-up:before {
	content: "";
}

.fa-caret-left:before {
	content: "";
}

.fa-caret-right:before {
	content: "";
}

.fa-columns:before {
	content: "";
}

.fa-unsorted:before,
.fa-sort:before {
	content: "";
}

.fa-sort-down:before,
.fa-sort-desc:before {
	content: "";
}

.fa-sort-up:before,
.fa-sort-asc:before {
	content: "";
}

.fa-envelope:before {
	content: "";
}

.fa-linkedin:before {
	content: "";
}

.fa-rotate-left:before,
.fa-undo:before {
	content: "";
}

.fa-legal:before,
.fa-gavel:before {
	content: "";
}

.fa-dashboard:before,
.fa-tachometer:before {
	content: "";
}

.fa-comment-o:before {
	content: "";
}

.fa-comments-o:before {
	content: "";
}

.fa-flash:before,
.fa-bolt:before {
	content: "";
}

.fa-sitemap:before {
	content: "";
}

.fa-umbrella:before {
	content: "";
}

.fa-paste:before,
.fa-clipboard:before {
	content: "";
}

.fa-lightbulb-o:before {
	content: "";
}

.fa-exchange:before {
	content: "";
}

.fa-cloud-download:before {
	content: "";
}

.fa-cloud-upload:before {
	content: "";
}

.fa-user-md:before {
	content: "";
}

.fa-stethoscope:before {
	content: "";
}

.fa-suitcase:before {
	content: "";
}

.fa-bell-o:before {
	content: "";
}

.fa-coffee:before {
	content: "";
}

.fa-cutlery:before {
	content: "";
}

.fa-file-text-o:before {
	content: "";
}

.fa-building-o:before {
	content: "";
}

.fa-hospital-o:before {
	content: "";
}

.fa-ambulance:before {
	content: "";
}

.fa-medkit:before {
	content: "";
}

.fa-fighter-jet:before {
	content: "";
}

.fa-beer:before {
	content: "";
}

.fa-h-square:before {
	content: "";
}

.fa-plus-square:before {
	content: "";
}

.fa-angle-double-left:before {
	content: "";
}

.fa-angle-double-right:before {
	content: "";
}

.fa-angle-double-up:before {
	content: "";
}

.fa-angle-double-down:before {
	content: "";
}

.fa-angle-left:before {
	content: "";
}

.fa-angle-right:before {
	content: "";
}

.fa-angle-up:before {
	content: "";
}

.fa-angle-down:before {
	content: "";
}

.fa-desktop:before {
	content: "";
}

.fa-laptop:before {
	content: "";
}

.fa-tablet:before {
	content: "";
}

.fa-mobile-phone:before,
.fa-mobile:before {
	content: "";
}

.fa-circle-o:before {
	content: "";
}

.fa-quote-left:before {
	content: "";
}

.fa-quote-right:before {
	content: "";
}

.fa-spinner:before {
	content: "";
}

.fa-circle:before {
	content: "";
}

.fa-mail-reply:before,
.fa-reply:before {
	content: "";
}

.fa-github-alt:before {
	content: "";
}

.fa-folder-o:before {
	content: "";
}

.fa-folder-open-o:before {
	content: "";
}

.fa-smile-o:before {
	content: "";
}

.fa-frown-o:before {
	content: "";
}

.fa-meh-o:before {
	content: "";
}

.fa-gamepad:before {
	content: "";
}

.fa-keyboard-o:before {
	content: "";
}

.fa-flag-o:before {
	content: "";
}

.fa-flag-checkered:before {
	content: "";
}

.fa-terminal:before {
	content: "";
}

.fa-code:before {
	content: "";
}

.fa-mail-reply-all:before,
.fa-reply-all:before {
	content: "";
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
	content: "";
}

.fa-location-arrow:before {
	content: "";
}

.fa-crop:before {
	content: "";
}

.fa-code-fork:before {
	content: "";
}

.fa-unlink:before,
.fa-chain-broken:before {
	content: "";
}

.fa-question:before {
	content: "";
}

.fa-info:before {
	content: "";
}

.fa-exclamation:before {
	content: "";
}

.fa-superscript:before {
	content: "";
}

.fa-subscript:before {
	content: "";
}

.fa-eraser:before {
	content: "";
}

.fa-puzzle-piece:before {
	content: "";
}

.fa-microphone:before {
	content: "";
}

.fa-microphone-slash:before {
	content: "";
}

.fa-shield:before {
	content: "";
}

.fa-calendar-o:before {
	content: "";
}

.fa-fire-extinguisher:before {
	content: "";
}

.fa-rocket:before {
	content: "";
}

.fa-maxcdn:before {
	content: "";
}

.fa-chevron-circle-left:before {
	content: "";
}

.fa-chevron-circle-right:before {
	content: "";
}

.fa-chevron-circle-up:before {
	content: "";
}

.fa-chevron-circle-down:before {
	content: "";
}

.fa-html5:before {
	content: "";
}

.fa-css3:before {
	content: "";
}

.fa-anchor:before {
	content: "";
}

.fa-unlock-alt:before {
	content: "";
}

.fa-bullseye:before {
	content: "";
}

.fa-ellipsis-h:before {
	content: "";
}

.fa-ellipsis-v:before {
	content: "";
}

.fa-rss-square:before {
	content: "";
}

.fa-play-circle:before {
	content: "";
}

.fa-ticket:before {
	content: "";
}

.fa-minus-square:before {
	content: "";
}

.fa-minus-square-o:before {
	content: "";
}

.fa-level-up:before {
	content: "";
}

.fa-level-down:before {
	content: "";
}

.fa-check-square:before {
	content: "";
}

.fa-pencil-square:before {
	content: "";
}

.fa-external-link-square:before {
	content: "";
}

.fa-share-square:before {
	content: "";
}

.fa-compass:before {
	content: "";
}

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
	content: "";
}

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
	content: "";
}

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
	content: "";
}

.fa-euro:before,
.fa-eur:before {
	content: "";
}

.fa-gbp:before {
	content: "";
}

.fa-dollar:before,
.fa-usd:before {
	content: "";
}

.fa-rupee:before,
.fa-inr:before {
	content: "";
}

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
	content: "";
}

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
	content: "";
}

.fa-won:before,
.fa-krw:before {
	content: "";
}

.fa-bitcoin:before,
.fa-btc:before {
	content: "";
}

.fa-file:before {
	content: "";
}

.fa-file-text:before {
	content: "";
}

.fa-sort-alpha-asc:before {
	content: "";
}

.fa-sort-alpha-desc:before {
	content: "";
}

.fa-sort-amount-asc:before {
	content: "";
}

.fa-sort-amount-desc:before {
	content: "";
}

.fa-sort-numeric-asc:before {
	content: "";
}

.fa-sort-numeric-desc:before {
	content: "";
}

.fa-thumbs-up:before {
	content: "";
}

.fa-thumbs-down:before {
	content: "";
}

.fa-youtube-square:before {
	content: "";
}

.fa-youtube:before {
	content: "";
}

.fa-xing:before {
	content: "";
}

.fa-xing-square:before {
	content: "";
}

.fa-youtube-play:before {
	content: "";
}

.fa-dropbox:before {
	content: "";
}

.fa-stack-overflow:before {
	content: "";
}

.fa-instagram:before {
	content: "";
}

.fa-flickr:before {
	content: "";
}

.fa-adn:before {
	content: "";
}

.fa-bitbucket:before {
	content: "";
}

.fa-bitbucket-square:before {
	content: "";
}

.fa-tumblr:before {
	content: "";
}

.fa-tumblr-square:before {
	content: "";
}

.fa-long-arrow-down:before {
	content: "";
}

.fa-long-arrow-up:before {
	content: "";
}

.fa-long-arrow-left:before {
	content: "";
}

.fa-long-arrow-right:before {
	content: "";
}

.fa-apple:before {
	content: "";
}

.fa-windows:before {
	content: "";
}

.fa-android:before {
	content: "";
}

.fa-linux:before {
	content: "";
}

.fa-dribbble:before {
	content: "";
}

.fa-skype:before {
	content: "";
}

.fa-foursquare:before {
	content: "";
}

.fa-trello:before {
	content: "";
}

.fa-female:before {
	content: "";
}

.fa-male:before {
	content: "";
}

.fa-gittip:before,
.fa-gratipay:before {
	content: "";
}

.fa-sun-o:before {
	content: "";
}

.fa-moon-o:before {
	content: "";
}

.fa-archive:before {
	content: "";
}

.fa-bug:before {
	content: "";
}

.fa-vk:before {
	content: "";
}

.fa-weibo:before {
	content: "";
}

.fa-renren:before {
	content: "";
}

.fa-pagelines:before {
	content: "";
}

.fa-stack-exchange:before {
	content: "";
}

.fa-arrow-circle-o-right:before {
	content: "";
}

.fa-arrow-circle-o-left:before {
	content: "";
}

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
	content: "";
}

.fa-dot-circle-o:before {
	content: "";
}

.fa-wheelchair:before {
	content: "";
}

.fa-vimeo-square:before {
	content: "";
}

.fa-turkish-lira:before,
.fa-try:before {
	content: "";
}

.fa-plus-square-o:before {
	content: "";
}

.fa-space-shuttle:before {
	content: "";
}

.fa-slack:before {
	content: "";
}

.fa-envelope-square:before {
	content: "";
}

.fa-wordpress:before {
	content: "";
}

.fa-openid:before {
	content: "";
}

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
	content: "";
}

.fa-mortar-board:before,
.fa-graduation-cap:before {
	content: "";
}

.fa-yahoo:before {
	content: "";
}

.fa-google:before {
	content: "";
}

.fa-reddit:before {
	content: "";
}

.fa-reddit-square:before {
	content: "";
}

.fa-stumbleupon-circle:before {
	content: "";
}

.fa-stumbleupon:before {
	content: "";
}

.fa-delicious:before {
	content: "";
}

.fa-digg:before {
	content: "";
}

.fa-pied-piper-pp:before {
	content: "";
}

.fa-pied-piper-alt:before {
	content: "";
}

.fa-drupal:before {
	content: "";
}

.fa-joomla:before {
	content: "";
}

.fa-language:before {
	content: "";
}

.fa-fax:before {
	content: "";
}

.fa-building:before {
	content: "";
}

.fa-child:before {
	content: "";
}

.fa-paw:before {
	content: "";
}

.fa-spoon:before {
	content: "";
}

.fa-cube:before {
	content: "";
}

.fa-cubes:before {
	content: "";
}

.fa-behance:before {
	content: "";
}

.fa-behance-square:before {
	content: "";
}

.fa-steam:before {
	content: "";
}

.fa-steam-square:before {
	content: "";
}

.fa-recycle:before {
	content: "";
}

.fa-automobile:before,
.fa-car:before {
	content: "";
}

.fa-cab:before,
.fa-taxi:before {
	content: "";
}

.fa-tree:before {
	content: "";
}

.fa-spotify:before {
	content: "";
}

.fa-deviantart:before {
	content: "";
}

.fa-soundcloud:before {
	content: "";
}

.fa-database:before {
	content: "";
}

.fa-file-pdf-o:before {
	content: "";
}

.fa-file-word-o:before {
	content: "";
}

.fa-file-excel-o:before {
	content: "";
}

.fa-file-powerpoint-o:before {
	content: "";
}

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
	content: "";
}

.fa-file-zip-o:before,
.fa-file-archive-o:before {
	content: "";
}

.fa-file-sound-o:before,
.fa-file-audio-o:before {
	content: "";
}

.fa-file-movie-o:before,
.fa-file-video-o:before {
	content: "";
}

.fa-file-code-o:before {
	content: "";
}

.fa-vine:before {
	content: "";
}

.fa-codepen:before {
	content: "";
}

.fa-jsfiddle:before {
	content: "";
}

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
	content: "";
}

.fa-circle-o-notch:before {
	content: "";
}

.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
	content: "";
}

.fa-ge:before,
.fa-empire:before {
	content: "";
}

.fa-git-square:before {
	content: "";
}

.fa-git:before {
	content: "";
}

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
	content: "";
}

.fa-tencent-weibo:before {
	content: "";
}

.fa-qq:before {
	content: "";
}

.fa-wechat:before,
.fa-weixin:before {
	content: "";
}

.fa-send:before,
.fa-paper-plane:before {
	content: "";
}

.fa-send-o:before,
.fa-paper-plane-o:before {
	content: "";
}

.fa-history:before {
	content: "";
}

.fa-circle-thin:before {
	content: "";
}

.fa-header:before {
	content: "";
}

.fa-paragraph:before {
	content: "";
}

.fa-sliders:before {
	content: "";
}

.fa-share-alt:before {
	content: "";
}

.fa-share-alt-square:before {
	content: "";
}

.fa-bomb:before {
	content: "";
}

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
	content: "";
}

.fa-tty:before {
	content: "";
}

.fa-binoculars:before {
	content: "";
}

.fa-plug:before {
	content: "";
}

.fa-slideshare:before {
	content: "";
}

.fa-twitch:before {
	content: "";
}

.fa-yelp:before {
	content: "";
}

.fa-newspaper-o:before {
	content: "";
}

.fa-wifi:before {
	content: "";
}

.fa-calculator:before {
	content: "";
}

.fa-paypal:before {
	content: "";
}

.fa-google-wallet:before {
	content: "";
}

.fa-cc-visa:before {
	content: "";
}

.fa-cc-mastercard:before {
	content: "";
}

.fa-cc-discover:before {
	content: "";
}

.fa-cc-amex:before {
	content: "";
}

.fa-cc-paypal:before {
	content: "";
}

.fa-cc-stripe:before {
	content: "";
}

.fa-bell-slash:before {
	content: "";
}

.fa-bell-slash-o:before {
	content: "";
}

.fa-trash:before {
	content: "";
}

.fa-copyright:before {
	content: "";
}

.fa-at:before {
	content: "";
}

.fa-eyedropper:before {
	content: "";
}

.fa-paint-brush:before {
	content: "";
}

.fa-birthday-cake:before {
	content: "";
}

.fa-area-chart:before {
	content: "";
}

.fa-pie-chart:before {
	content: "";
}

.fa-line-chart:before {
	content: "";
}

.fa-lastfm:before {
	content: "";
}

.fa-lastfm-square:before {
	content: "";
}

.fa-toggle-off:before {
	content: "";
}

.fa-toggle-on:before {
	content: "";
}

.fa-bicycle:before {
	content: "";
}

.fa-bus:before {
	content: "";
}

.fa-ioxhost:before {
	content: "";
}

.fa-angellist:before {
	content: "";
}

.fa-cc:before {
	content: "";
}

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
	content: "";
}

.fa-meanpath:before {
	content: "";
}

.fa-buysellads:before {
	content: "";
}

.fa-connectdevelop:before {
	content: "";
}

.fa-dashcube:before {
	content: "";
}

.fa-forumbee:before {
	content: "";
}

.fa-leanpub:before {
	content: "";
}

.fa-sellsy:before {
	content: "";
}

.fa-shirtsinbulk:before {
	content: "";
}

.fa-simplybuilt:before {
	content: "";
}

.fa-skyatlas:before {
	content: "";
}

.fa-cart-plus:before {
	content: "";
}

.fa-cart-arrow-down:before {
	content: "";
}

.fa-diamond:before {
	content: "";
}

.fa-ship:before {
	content: "";
}

.fa-user-secret:before {
	content: "";
}

.fa-motorcycle:before {
	content: "";
}

.fa-street-view:before {
	content: "";
}

.fa-heartbeat:before {
	content: "";
}

.fa-venus:before {
	content: "";
}

.fa-mars:before {
	content: "";
}

.fa-mercury:before {
	content: "";
}

.fa-intersex:before,
.fa-transgender:before {
	content: "";
}

.fa-transgender-alt:before {
	content: "";
}

.fa-venus-double:before {
	content: "";
}

.fa-mars-double:before {
	content: "";
}

.fa-venus-mars:before {
	content: "";
}

.fa-mars-stroke:before {
	content: "";
}

.fa-mars-stroke-v:before {
	content: "";
}

.fa-mars-stroke-h:before {
	content: "";
}

.fa-neuter:before {
	content: "";
}

.fa-genderless:before {
	content: "";
}

.fa-facebook-official:before {
	content: "";
}

.fa-pinterest-p:before {
	content: "";
}

.fa-whatsapp:before {
	content: "";
}

.fa-server:before {
	content: "";
}

.fa-user-plus:before {
	content: "";
}

.fa-user-times:before {
	content: "";
}

.fa-hotel:before,
.fa-bed:before {
	content: "";
}

.fa-viacoin:before {
	content: "";
}

.fa-train:before {
	content: "";
}

.fa-subway:before {
	content: "";
}

.fa-medium:before {
	content: "";
}

.fa-yc:before,
.fa-y-combinator:before {
	content: "";
}

.fa-optin-monster:before {
	content: "";
}

.fa-opencart:before {
	content: "";
}

.fa-expeditedssl:before {
	content: "";
}

.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
	content: "";
}

.fa-battery-3:before,
.fa-battery-three-quarters:before {
	content: "";
}

.fa-battery-2:before,
.fa-battery-half:before {
	content: "";
}

.fa-battery-1:before,
.fa-battery-quarter:before {
	content: "";
}

.fa-battery-0:before,
.fa-battery-empty:before {
	content: "";
}

.fa-mouse-pointer:before {
	content: "";
}

.fa-i-cursor:before {
	content: "";
}

.fa-object-group:before {
	content: "";
}

.fa-object-ungroup:before {
	content: "";
}

.fa-sticky-note:before {
	content: "";
}

.fa-sticky-note-o:before {
	content: "";
}

.fa-cc-jcb:before {
	content: "";
}

.fa-cc-diners-club:before {
	content: "";
}

.fa-clone:before {
	content: "";
}

.fa-balance-scale:before {
	content: "";
}

.fa-hourglass-o:before {
	content: "";
}

.fa-hourglass-1:before,
.fa-hourglass-start:before {
	content: "";
}

.fa-hourglass-2:before,
.fa-hourglass-half:before {
	content: "";
}

.fa-hourglass-3:before,
.fa-hourglass-end:before {
	content: "";
}

.fa-hourglass:before {
	content: "";
}

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
	content: "";
}

.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
	content: "";
}

.fa-hand-scissors-o:before {
	content: "";
}

.fa-hand-lizard-o:before {
	content: "";
}

.fa-hand-spock-o:before {
	content: "";
}

.fa-hand-pointer-o:before {
	content: "";
}

.fa-hand-peace-o:before {
	content: "";
}

.fa-trademark:before {
	content: "";
}

.fa-registered:before {
	content: "";
}

.fa-creative-commons:before {
	content: "";
}

.fa-gg:before {
	content: "";
}

.fa-gg-circle:before {
	content: "";
}

.fa-tripadvisor:before {
	content: "";
}

.fa-odnoklassniki:before {
	content: "";
}

.fa-odnoklassniki-square:before {
	content: "";
}

.fa-get-pocket:before {
	content: "";
}

.fa-wikipedia-w:before {
	content: "";
}

.fa-safari:before {
	content: "";
}

.fa-chrome:before {
	content: "";
}

.fa-firefox:before {
	content: "";
}

.fa-opera:before {
	content: "";
}

.fa-internet-explorer:before {
	content: "";
}

.fa-tv:before,
.fa-television:before {
	content: "";
}

.fa-contao:before {
	content: "";
}

.fa-500px:before {
	content: "";
}

.fa-amazon:before {
	content: "";
}

.fa-calendar-plus-o:before {
	content: "";
}

.fa-calendar-minus-o:before {
	content: "";
}

.fa-calendar-times-o:before {
	content: "";
}

.fa-calendar-check-o:before {
	content: "";
}

.fa-industry:before {
	content: "";
}

.fa-map-pin:before {
	content: "";
}

.fa-map-signs:before {
	content: "";
}

.fa-map-o:before {
	content: "";
}

.fa-map:before {
	content: "";
}

.fa-commenting:before {
	content: "";
}

.fa-commenting-o:before {
	content: "";
}

.fa-houzz:before {
	content: "";
}

.fa-vimeo:before {
	content: "";
}

.fa-black-tie:before {
	content: "";
}

.fa-fonticons:before {
	content: "";
}

.fa-reddit-alien:before {
	content: "";
}

.fa-edge:before {
	content: "";
}

.fa-credit-card-alt:before {
	content: "";
}

.fa-codiepie:before {
	content: "";
}

.fa-modx:before {
	content: "";
}

.fa-fort-awesome:before {
	content: "";
}

.fa-usb:before {
	content: "";
}

.fa-product-hunt:before {
	content: "";
}

.fa-mixcloud:before {
	content: "";
}

.fa-scribd:before {
	content: "";
}

.fa-pause-circle:before {
	content: "";
}

.fa-pause-circle-o:before {
	content: "";
}

.fa-stop-circle:before {
	content: "";
}

.fa-stop-circle-o:before {
	content: "";
}

.fa-shopping-bag:before {
	content: "";
}

.fa-shopping-basket:before {
	content: "";
}

.fa-hashtag:before {
	content: "";
}

.fa-bluetooth:before {
	content: "";
}

.fa-bluetooth-b:before {
	content: "";
}

.fa-percent:before {
	content: "";
}

.fa-gitlab:before {
	content: "";
}

.fa-wpbeginner:before {
	content: "";
}

.fa-wpforms:before {
	content: "";
}

.fa-envira:before {
	content: "";
}

.fa-universal-access:before {
	content: "";
}

.fa-wheelchair-alt:before {
	content: "";
}

.fa-question-circle-o:before {
	content: "";
}

.fa-blind:before {
	content: "";
}

.fa-audio-description:before {
	content: "";
}

.fa-volume-control-phone:before {
	content: "";
}

.fa-braille:before {
	content: "";
}

.fa-assistive-listening-systems:before {
	content: "";
}

.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
	content: "";
}

.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
	content: "";
}

.fa-glide:before {
	content: "";
}

.fa-glide-g:before {
	content: "";
}

.fa-signing:before,
.fa-sign-language:before {
	content: "";
}

.fa-low-vision:before {
	content: "";
}

.fa-viadeo:before {
	content: "";
}

.fa-viadeo-square:before {
	content: "";
}

.fa-snapchat:before {
	content: "";
}

.fa-snapchat-ghost:before {
	content: "";
}

.fa-snapchat-square:before {
	content: "";
}

.fa-pied-piper:before {
	content: "";
}

.fa-first-order:before {
	content: "";
}

.fa-yoast:before {
	content: "";
}

.fa-themeisle:before {
	content: "";
}

.fa-google-plus-circle:before,
.fa-google-plus-official:before {
	content: "";
}

.fa-fa:before,
.fa-font-awesome:before {
	content: "";
}

.fa-handshake-o:before {
	content: "";
}

.fa-envelope-open:before {
	content: "";
}

.fa-envelope-open-o:before {
	content: "";
}

.fa-linode:before {
	content: "";
}

.fa-address-book:before {
	content: "";
}

.fa-address-book-o:before {
	content: "";
}

.fa-vcard:before,
.fa-address-card:before {
	content: "";
}

.fa-vcard-o:before,
.fa-address-card-o:before {
	content: "";
}

.fa-user-circle:before {
	content: "";
}

.fa-user-circle-o:before {
	content: "";
}

.fa-user-o:before {
	content: "";
}

.fa-id-badge:before {
	content: "";
}

.fa-drivers-license:before,
.fa-id-card:before {
	content: "";
}

.fa-drivers-license-o:before,
.fa-id-card-o:before {
	content: "";
}

.fa-quora:before {
	content: "";
}

.fa-free-code-camp:before {
	content: "";
}

.fa-telegram:before {
	content: "";
}

.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
	content: "";
}

.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
	content: "";
}

.fa-thermometer-2:before,
.fa-thermometer-half:before {
	content: "";
}

.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
	content: "";
}

.fa-thermometer-0:before,
.fa-thermometer-empty:before {
	content: "";
}

.fa-shower:before {
	content: "";
}

.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
	content: "";
}

.fa-podcast:before {
	content: "";
}

.fa-window-maximize:before {
	content: "";
}

.fa-window-minimize:before {
	content: "";
}

.fa-window-restore:before {
	content: "";
}

.fa-times-rectangle:before,
.fa-window-close:before {
	content: "";
}

.fa-times-rectangle-o:before,
.fa-window-close-o:before {
	content: "";
}

.fa-bandcamp:before {
	content: "";
}

.fa-grav:before {
	content: "";
}

.fa-etsy:before {
	content: "";
}

.fa-imdb:before {
	content: "";
}

.fa-ravelry:before {
	content: "";
}

.fa-eercast:before {
	content: "";
}

.fa-microchip:before {
	content: "";
}

.fa-snowflake-o:before {
	content: "";
}

.fa-superpowers:before {
	content: "";
}

.fa-wpexplorer:before {
	content: "";
}

.fa-meetup:before {
	content: "";
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
	position: static;
	width: auto;
	height: auto;
	margin: 0;
	overflow: visible;
	clip: auto;
}

/*!
  Ionicons, v2.0.1
  Created by Ben Sperry for the Ionic Framework, http://ionicons.com/
  https://twitter.com/benjsperry  https://twitter.com/ionicframework
  MIT License: https://github.com/driftyco/ionicons

  Android-style icons originally built by Google’s
  Material Design Icons: https://github.com/google/material-design-icons
  used under CC BY http://creativecommons.org/licenses/by/4.0/
  Modified icons to fit ionicon’s grid from original.
*/
@font-face {
	font-family: "Ionicons";
	src: url("../fonts/ionicons790f.eot?v=2.0.1");
	src:
		url("../fonts/ionicons790f.eot?v=2.0.1#iefix") format("embedded-opentype"),
		url("../fonts/ionicons790f.ttf?v=2.0.1") format("truetype"),
		url("../fonts/ionicons790f.woff?v=2.0.1") format("woff"),
		url("../fonts/ionicons790f.svg?v=2.0.1#Ionicons") format("svg");
	font-weight: normal;
	font-style: normal;
}

.ion,
.ionicons,
.ion-alert:before,
.ion-alert-circled:before,
.ion-android-add:before,
.ion-android-add-circle:before,
.ion-android-alarm-clock:before,
.ion-android-alert:before,
.ion-android-apps:before,
.ion-android-archive:before,
.ion-android-arrow-back:before,
.ion-android-arrow-down:before,
.ion-android-arrow-dropdown:before,
.ion-android-arrow-dropdown-circle:before,
.ion-android-arrow-dropleft:before,
.ion-android-arrow-dropleft-circle:before,
.ion-android-arrow-dropright:before,
.ion-android-arrow-dropright-circle:before,
.ion-android-arrow-dropup:before,
.ion-android-arrow-dropup-circle:before,
.ion-android-arrow-forward:before,
.ion-android-arrow-up:before,
.ion-android-attach:before,
.ion-android-bar:before,
.ion-android-bicycle:before,
.ion-android-boat:before,
.ion-android-bookmark:before,
.ion-android-bulb:before,
.ion-android-bus:before,
.ion-android-calendar:before,
.ion-android-call:before,
.ion-android-camera:before,
.ion-android-cancel:before,
.ion-android-car:before,
.ion-android-cart:before,
.ion-android-chat:before,
.ion-android-checkbox:before,
.ion-android-checkbox-blank:before,
.ion-android-checkbox-outline:before,
.ion-android-checkbox-outline-blank:before,
.ion-android-checkmark-circle:before,
.ion-android-clipboard:before,
.ion-android-close:before,
.ion-android-cloud:before,
.ion-android-cloud-circle:before,
.ion-android-cloud-done:before,
.ion-android-cloud-outline:before,
.ion-android-color-palette:before,
.ion-android-compass:before,
.ion-android-contact:before,
.ion-android-contacts:before,
.ion-android-contract:before,
.ion-android-create:before,
.ion-android-delete:before,
.ion-android-desktop:before,
.ion-android-document:before,
.ion-android-done:before,
.ion-android-done-all:before,
.ion-android-download:before,
.ion-android-drafts:before,
.ion-android-exit:before,
.ion-android-expand:before,
.ion-android-favorite:before,
.ion-android-favorite-outline:before,
.ion-android-film:before,
.ion-android-folder:before,
.ion-android-folder-open:before,
.ion-android-funnel:before,
.ion-android-globe:before,
.ion-android-hand:before,
.ion-android-hangout:before,
.ion-android-happy:before,
.ion-android-home:before,
.ion-android-image:before,
.ion-android-laptop:before,
.ion-android-list:before,
.ion-android-locate:before,
.ion-android-lock:before,
.ion-android-mail:before,
.ion-android-map:before,
.ion-android-menu:before,
.ion-android-microphone:before,
.ion-android-microphone-off:before,
.ion-android-more-horizontal:before,
.ion-android-more-vertical:before,
.ion-android-navigate:before,
.ion-android-notifications:before,
.ion-android-notifications-none:before,
.ion-android-notifications-off:before,
.ion-android-open:before,
.ion-android-options:before,
.ion-android-people:before,
.ion-android-person:before,
.ion-android-person-add:before,
.ion-android-phone-landscape:before,
.ion-android-phone-portrait:before,
.ion-android-pin:before,
.ion-android-plane:before,
.ion-android-playstore:before,
.ion-android-print:before,
.ion-android-radio-button-off:before,
.ion-android-radio-button-on:before,
.ion-android-refresh:before,
.ion-android-remove:before,
.ion-android-remove-circle:before,
.ion-android-restaurant:before,
.ion-android-sad:before,
.ion-android-search:before,
.ion-android-send:before,
.ion-android-settings:before,
.ion-android-share:before,
.ion-android-share-alt:before,
.ion-android-star:before,
.ion-android-star-half:before,
.ion-android-star-outline:before,
.ion-android-stopwatch:before,
.ion-android-subway:before,
.ion-android-sunny:before,
.ion-android-sync:before,
.ion-android-textsms:before,
.ion-android-time:before,
.ion-android-train:before,
.ion-android-unlock:before,
.ion-android-upload:before,
.ion-android-volume-down:before,
.ion-android-volume-mute:before,
.ion-android-volume-off:before,
.ion-android-volume-up:before,
.ion-android-walk:before,
.ion-android-warning:before,
.ion-android-watch:before,
.ion-android-wifi:before,
.ion-aperture:before,
.ion-archive:before,
.ion-arrow-down-a:before,
.ion-arrow-down-b:before,
.ion-arrow-down-c:before,
.ion-arrow-expand:before,
.ion-arrow-graph-down-left:before,
.ion-arrow-graph-down-right:before,
.ion-arrow-graph-up-left:before,
.ion-arrow-graph-up-right:before,
.ion-arrow-left-a:before,
.ion-arrow-left-b:before,
.ion-arrow-left-c:before,
.ion-arrow-move:before,
.ion-arrow-resize:before,
.ion-arrow-return-left:before,
.ion-arrow-return-right:before,
.ion-arrow-right-a:before,
.ion-arrow-right-b:before,
.ion-arrow-right-c:before,
.ion-arrow-shrink:before,
.ion-arrow-swap:before,
.ion-arrow-up-a:before,
.ion-arrow-up-b:before,
.ion-arrow-up-c:before,
.ion-asterisk:before,
.ion-at:before,
.ion-backspace:before,
.ion-backspace-outline:before,
.ion-bag:before,
.ion-battery-charging:before,
.ion-battery-empty:before,
.ion-battery-full:before,
.ion-battery-half:before,
.ion-battery-low:before,
.ion-beaker:before,
.ion-beer:before,
.ion-bluetooth:before,
.ion-bonfire:before,
.ion-bookmark:before,
.ion-bowtie:before,
.ion-briefcase:before,
.ion-bug:before,
.ion-calculator:before,
.ion-calendar:before,
.ion-camera:before,
.ion-card:before,
.ion-cash:before,
.ion-chatbox:before,
.ion-chatbox-working:before,
.ion-chatboxes:before,
.ion-chatbubble:before,
.ion-chatbubble-working:before,
.ion-chatbubbles:before,
.ion-checkmark:before,
.ion-checkmark-circled:before,
.ion-checkmark-round:before,
.ion-chevron-down:before,
.ion-chevron-left:before,
.ion-chevron-right:before,
.ion-chevron-up:before,
.ion-clipboard:before,
.ion-clock:before,
.ion-close:before,
.ion-close-circled:before,
.ion-close-round:before,
.ion-closed-captioning:before,
.ion-cloud:before,
.ion-code:before,
.ion-code-download:before,
.ion-code-working:before,
.ion-coffee:before,
.ion-compass:before,
.ion-compose:before,
.ion-connection-bars:before,
.ion-contrast:before,
.ion-crop:before,
.ion-cube:before,
.ion-disc:before,
.ion-document:before,
.ion-document-text:before,
.ion-drag:before,
.ion-earth:before,
.ion-easel:before,
.ion-edit:before,
.ion-egg:before,
.ion-eject:before,
.ion-email:before,
.ion-email-unread:before,
.ion-erlenmeyer-flask:before,
.ion-erlenmeyer-flask-bubbles:before,
.ion-eye:before,
.ion-eye-disabled:before,
.ion-female:before,
.ion-filing:before,
.ion-film-marker:before,
.ion-fireball:before,
.ion-flag:before,
.ion-flame:before,
.ion-flash:before,
.ion-flash-off:before,
.ion-folder:before,
.ion-fork:before,
.ion-fork-repo:before,
.ion-forward:before,
.ion-funnel:before,
.ion-gear-a:before,
.ion-gear-b:before,
.ion-grid:before,
.ion-hammer:before,
.ion-happy:before,
.ion-happy-outline:before,
.ion-headphone:before,
.ion-heart:before,
.ion-heart-broken:before,
.ion-help:before,
.ion-help-buoy:before,
.ion-help-circled:before,
.ion-home:before,
.ion-icecream:before,
.ion-image:before,
.ion-images:before,
.ion-information:before,
.ion-information-circled:before,
.ion-ionic:before,
.ion-ios-alarm:before,
.ion-ios-alarm-outline:before,
.ion-ios-albums:before,
.ion-ios-albums-outline:before,
.ion-ios-americanfootball:before,
.ion-ios-americanfootball-outline:before,
.ion-ios-analytics:before,
.ion-ios-analytics-outline:before,
.ion-ios-arrow-back:before,
.ion-ios-arrow-down:before,
.ion-ios-arrow-forward:before,
.ion-ios-arrow-left:before,
.ion-ios-arrow-right:before,
.ion-ios-arrow-thin-down:before,
.ion-ios-arrow-thin-left:before,
.ion-ios-arrow-thin-right:before,
.ion-ios-arrow-thin-up:before,
.ion-ios-arrow-up:before,
.ion-ios-at:before,
.ion-ios-at-outline:before,
.ion-ios-barcode:before,
.ion-ios-barcode-outline:before,
.ion-ios-baseball:before,
.ion-ios-baseball-outline:before,
.ion-ios-basketball:before,
.ion-ios-basketball-outline:before,
.ion-ios-bell:before,
.ion-ios-bell-outline:before,
.ion-ios-body:before,
.ion-ios-body-outline:before,
.ion-ios-bolt:before,
.ion-ios-bolt-outline:before,
.ion-ios-book:before,
.ion-ios-book-outline:before,
.ion-ios-bookmarks:before,
.ion-ios-bookmarks-outline:before,
.ion-ios-box:before,
.ion-ios-box-outline:before,
.ion-ios-briefcase:before,
.ion-ios-briefcase-outline:before,
.ion-ios-browsers:before,
.ion-ios-browsers-outline:before,
.ion-ios-calculator:before,
.ion-ios-calculator-outline:before,
.ion-ios-calendar:before,
.ion-ios-calendar-outline:before,
.ion-ios-camera:before,
.ion-ios-camera-outline:before,
.ion-ios-cart:before,
.ion-ios-cart-outline:before,
.ion-ios-chatboxes:before,
.ion-ios-chatboxes-outline:before,
.ion-ios-chatbubble:before,
.ion-ios-chatbubble-outline:before,
.ion-ios-checkmark:before,
.ion-ios-checkmark-empty:before,
.ion-ios-checkmark-outline:before,
.ion-ios-circle-filled:before,
.ion-ios-circle-outline:before,
.ion-ios-clock:before,
.ion-ios-clock-outline:before,
.ion-ios-close:before,
.ion-ios-close-empty:before,
.ion-ios-close-outline:before,
.ion-ios-cloud:before,
.ion-ios-cloud-download:before,
.ion-ios-cloud-download-outline:before,
.ion-ios-cloud-outline:before,
.ion-ios-cloud-upload:before,
.ion-ios-cloud-upload-outline:before,
.ion-ios-cloudy:before,
.ion-ios-cloudy-night:before,
.ion-ios-cloudy-night-outline:before,
.ion-ios-cloudy-outline:before,
.ion-ios-cog:before,
.ion-ios-cog-outline:before,
.ion-ios-color-filter:before,
.ion-ios-color-filter-outline:before,
.ion-ios-color-wand:before,
.ion-ios-color-wand-outline:before,
.ion-ios-compose:before,
.ion-ios-compose-outline:before,
.ion-ios-contact:before,
.ion-ios-contact-outline:before,
.ion-ios-copy:before,
.ion-ios-copy-outline:before,
.ion-ios-crop:before,
.ion-ios-crop-strong:before,
.ion-ios-download:before,
.ion-ios-download-outline:before,
.ion-ios-drag:before,
.ion-ios-email:before,
.ion-ios-email-outline:before,
.ion-ios-eye:before,
.ion-ios-eye-outline:before,
.ion-ios-fastforward:before,
.ion-ios-fastforward-outline:before,
.ion-ios-filing:before,
.ion-ios-filing-outline:before,
.ion-ios-film:before,
.ion-ios-film-outline:before,
.ion-ios-flag:before,
.ion-ios-flag-outline:before,
.ion-ios-flame:before,
.ion-ios-flame-outline:before,
.ion-ios-flask:before,
.ion-ios-flask-outline:before,
.ion-ios-flower:before,
.ion-ios-flower-outline:before,
.ion-ios-folder:before,
.ion-ios-folder-outline:before,
.ion-ios-football:before,
.ion-ios-football-outline:before,
.ion-ios-game-controller-a:before,
.ion-ios-game-controller-a-outline:before,
.ion-ios-game-controller-b:before,
.ion-ios-game-controller-b-outline:before,
.ion-ios-gear:before,
.ion-ios-gear-outline:before,
.ion-ios-glasses:before,
.ion-ios-glasses-outline:before,
.ion-ios-grid-view:before,
.ion-ios-grid-view-outline:before,
.ion-ios-heart:before,
.ion-ios-heart-outline:before,
.ion-ios-help:before,
.ion-ios-help-empty:before,
.ion-ios-help-outline:before,
.ion-ios-home:before,
.ion-ios-home-outline:before,
.ion-ios-infinite:before,
.ion-ios-infinite-outline:before,
.ion-ios-information:before,
.ion-ios-information-empty:before,
.ion-ios-information-outline:before,
.ion-ios-ionic-outline:before,
.ion-ios-keypad:before,
.ion-ios-keypad-outline:before,
.ion-ios-lightbulb:before,
.ion-ios-lightbulb-outline:before,
.ion-ios-list:before,
.ion-ios-list-outline:before,
.ion-ios-location:before,
.ion-ios-location-outline:before,
.ion-ios-locked:before,
.ion-ios-locked-outline:before,
.ion-ios-loop:before,
.ion-ios-loop-strong:before,
.ion-ios-medical:before,
.ion-ios-medical-outline:before,
.ion-ios-medkit:before,
.ion-ios-medkit-outline:before,
.ion-ios-mic:before,
.ion-ios-mic-off:before,
.ion-ios-mic-outline:before,
.ion-ios-minus:before,
.ion-ios-minus-empty:before,
.ion-ios-minus-outline:before,
.ion-ios-monitor:before,
.ion-ios-monitor-outline:before,
.ion-ios-moon:before,
.ion-ios-moon-outline:before,
.ion-ios-more:before,
.ion-ios-more-outline:before,
.ion-ios-musical-note:before,
.ion-ios-musical-notes:before,
.ion-ios-navigate:before,
.ion-ios-navigate-outline:before,
.ion-ios-nutrition:before,
.ion-ios-nutrition-outline:before,
.ion-ios-paper:before,
.ion-ios-paper-outline:before,
.ion-ios-paperplane:before,
.ion-ios-paperplane-outline:before,
.ion-ios-partlysunny:before,
.ion-ios-partlysunny-outline:before,
.ion-ios-pause:before,
.ion-ios-pause-outline:before,
.ion-ios-paw:before,
.ion-ios-paw-outline:before,
.ion-ios-people:before,
.ion-ios-people-outline:before,
.ion-ios-person:before,
.ion-ios-person-outline:before,
.ion-ios-personadd:before,
.ion-ios-personadd-outline:before,
.ion-ios-photos:before,
.ion-ios-photos-outline:before,
.ion-ios-pie:before,
.ion-ios-pie-outline:before,
.ion-ios-pint:before,
.ion-ios-pint-outline:before,
.ion-ios-play:before,
.ion-ios-play-outline:before,
.ion-ios-plus:before,
.ion-ios-plus-empty:before,
.ion-ios-plus-outline:before,
.ion-ios-pricetag:before,
.ion-ios-pricetag-outline:before,
.ion-ios-pricetags:before,
.ion-ios-pricetags-outline:before,
.ion-ios-printer:before,
.ion-ios-printer-outline:before,
.ion-ios-pulse:before,
.ion-ios-pulse-strong:before,
.ion-ios-rainy:before,
.ion-ios-rainy-outline:before,
.ion-ios-recording:before,
.ion-ios-recording-outline:before,
.ion-ios-redo:before,
.ion-ios-redo-outline:before,
.ion-ios-refresh:before,
.ion-ios-refresh-empty:before,
.ion-ios-refresh-outline:before,
.ion-ios-reload:before,
.ion-ios-reverse-camera:before,
.ion-ios-reverse-camera-outline:before,
.ion-ios-rewind:before,
.ion-ios-rewind-outline:before,
.ion-ios-rose:before,
.ion-ios-rose-outline:before,
.ion-ios-search:before,
.ion-ios-search-strong:before,
.ion-ios-settings:before,
.ion-ios-settings-strong:before,
.ion-ios-shuffle:before,
.ion-ios-shuffle-strong:before,
.ion-ios-skipbackward:before,
.ion-ios-skipbackward-outline:before,
.ion-ios-skipforward:before,
.ion-ios-skipforward-outline:before,
.ion-ios-snowy:before,
.ion-ios-speedometer:before,
.ion-ios-speedometer-outline:before,
.ion-ios-star:before,
.ion-ios-star-half:before,
.ion-ios-star-outline:before,
.ion-ios-stopwatch:before,
.ion-ios-stopwatch-outline:before,
.ion-ios-sunny:before,
.ion-ios-sunny-outline:before,
.ion-ios-telephone:before,
.ion-ios-telephone-outline:before,
.ion-ios-tennisball:before,
.ion-ios-tennisball-outline:before,
.ion-ios-thunderstorm:before,
.ion-ios-thunderstorm-outline:before,
.ion-ios-time:before,
.ion-ios-time-outline:before,
.ion-ios-timer:before,
.ion-ios-timer-outline:before,
.ion-ios-toggle:before,
.ion-ios-toggle-outline:before,
.ion-ios-trash:before,
.ion-ios-trash-outline:before,
.ion-ios-undo:before,
.ion-ios-undo-outline:before,
.ion-ios-unlocked:before,
.ion-ios-unlocked-outline:before,
.ion-ios-upload:before,
.ion-ios-upload-outline:before,
.ion-ios-videocam:before,
.ion-ios-videocam-outline:before,
.ion-ios-volume-high:before,
.ion-ios-volume-low:before,
.ion-ios-wineglass:before,
.ion-ios-wineglass-outline:before,
.ion-ios-world:before,
.ion-ios-world-outline:before,
.ion-ipad:before,
.ion-iphone:before,
.ion-ipod:before,
.ion-jet:before,
.ion-key:before,
.ion-knife:before,
.ion-laptop:before,
.ion-leaf:before,
.ion-levels:before,
.ion-lightbulb:before,
.ion-link:before,
.ion-load-a:before,
.ion-load-b:before,
.ion-load-c:before,
.ion-load-d:before,
.ion-location:before,
.ion-lock-combination:before,
.ion-locked:before,
.ion-log-in:before,
.ion-log-out:before,
.ion-loop:before,
.ion-magnet:before,
.ion-male:before,
.ion-man:before,
.ion-map:before,
.ion-medkit:before,
.ion-merge:before,
.ion-mic-a:before,
.ion-mic-b:before,
.ion-mic-c:before,
.ion-minus:before,
.ion-minus-circled:before,
.ion-minus-round:before,
.ion-model-s:before,
.ion-monitor:before,
.ion-more:before,
.ion-mouse:before,
.ion-music-note:before,
.ion-navicon:before,
.ion-navicon-round:before,
.ion-navigate:before,
.ion-network:before,
.ion-no-smoking:before,
.ion-nuclear:before,
.ion-outlet:before,
.ion-paintbrush:before,
.ion-paintbucket:before,
.ion-paper-airplane:before,
.ion-paperclip:before,
.ion-pause:before,
.ion-person:before,
.ion-person-add:before,
.ion-person-stalker:before,
.ion-pie-graph:before,
.ion-pin:before,
.ion-pinpoint:before,
.ion-pizza:before,
.ion-plane:before,
.ion-planet:before,
.ion-play:before,
.ion-playstation:before,
.ion-plus:before,
.ion-plus-circled:before,
.ion-plus-round:before,
.ion-podium:before,
.ion-pound:before,
.ion-power:before,
.ion-pricetag:before,
.ion-pricetags:before,
.ion-printer:before,
.ion-pull-request:before,
.ion-qr-scanner:before,
.ion-quote:before,
.ion-radio-waves:before,
.ion-record:before,
.ion-refresh:before,
.ion-reply:before,
.ion-reply-all:before,
.ion-ribbon-a:before,
.ion-ribbon-b:before,
.ion-sad:before,
.ion-sad-outline:before,
.ion-scissors:before,
.ion-search:before,
.ion-settings:before,
.ion-share:before,
.ion-shuffle:before,
.ion-skip-backward:before,
.ion-skip-forward:before,
.ion-social-android:before,
.ion-social-android-outline:before,
.ion-social-angular:before,
.ion-social-angular-outline:before,
.ion-social-apple:before,
.ion-social-apple-outline:before,
.ion-social-bitcoin:before,
.ion-social-bitcoin-outline:before,
.ion-social-buffer:before,
.ion-social-buffer-outline:before,
.ion-social-chrome:before,
.ion-social-chrome-outline:before,
.ion-social-codepen:before,
.ion-social-codepen-outline:before,
.ion-social-css3:before,
.ion-social-css3-outline:before,
.ion-social-designernews:before,
.ion-social-designernews-outline:before,
.ion-social-dribbble:before,
.ion-social-dribbble-outline:before,
.ion-social-dropbox:before,
.ion-social-dropbox-outline:before,
.ion-social-euro:before,
.ion-social-euro-outline:before,
.ion-social-facebook:before,
.ion-social-facebook-outline:before,
.ion-social-foursquare:before,
.ion-social-foursquare-outline:before,
.ion-social-freebsd-devil:before,
.ion-social-github:before,
.ion-social-github-outline:before,
.ion-social-google:before,
.ion-social-google-outline:before,
.ion-social-googleplus:before,
.ion-social-googleplus-outline:before,
.ion-social-hackernews:before,
.ion-social-hackernews-outline:before,
.ion-social-html5:before,
.ion-social-html5-outline:before,
.ion-social-instagram:before,
.ion-social-instagram-outline:before,
.ion-social-javascript:before,
.ion-social-javascript-outline:before,
.ion-social-linkedin:before,
.ion-social-linkedin-outline:before,
.ion-social-markdown:before,
.ion-social-nodejs:before,
.ion-social-octocat:before,
.ion-social-pinterest:before,
.ion-social-pinterest-outline:before,
.ion-social-python:before,
.ion-social-reddit:before,
.ion-social-reddit-outline:before,
.ion-social-rss:before,
.ion-social-rss-outline:before,
.ion-social-sass:before,
.ion-social-skype:before,
.ion-social-skype-outline:before,
.ion-social-snapchat:before,
.ion-social-snapchat-outline:before,
.ion-social-tumblr:before,
.ion-social-tumblr-outline:before,
.ion-social-tux:before,
.ion-social-twitch:before,
.ion-social-twitch-outline:before,
.ion-social-twitter:before,
.ion-social-twitter-outline:before,
.ion-social-usd:before,
.ion-social-usd-outline:before,
.ion-social-vimeo:before,
.ion-social-vimeo-outline:before,
.ion-social-whatsapp:before,
.ion-social-whatsapp-outline:before,
.ion-social-windows:before,
.ion-social-windows-outline:before,
.ion-social-wordpress:before,
.ion-social-wordpress-outline:before,
.ion-social-yahoo:before,
.ion-social-yahoo-outline:before,
.ion-social-yen:before,
.ion-social-yen-outline:before,
.ion-social-youtube:before,
.ion-social-youtube-outline:before,
.ion-soup-can:before,
.ion-soup-can-outline:before,
.ion-speakerphone:before,
.ion-speedometer:before,
.ion-spoon:before,
.ion-star:before,
.ion-stats-bars:before,
.ion-steam:before,
.ion-stop:before,
.ion-thermometer:before,
.ion-thumbsdown:before,
.ion-thumbsup:before,
.ion-toggle:before,
.ion-toggle-filled:before,
.ion-transgender:before,
.ion-trash-a:before,
.ion-trash-b:before,
.ion-trophy:before,
.ion-tshirt:before,
.ion-tshirt-outline:before,
.ion-umbrella:before,
.ion-university:before,
.ion-unlocked:before,
.ion-upload:before,
.ion-usb:before,
.ion-videocamera:before,
.ion-volume-high:before,
.ion-volume-low:before,
.ion-volume-medium:before,
.ion-volume-mute:before,
.ion-wand:before,
.ion-waterdrop:before,
.ion-wifi:before,
.ion-wineglass:before,
.ion-woman:before,
.ion-wrench:before,
.ion-xbox:before {
	display: inline-block;
	font-family: "Ionicons";
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	text-rendering: auto;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.ion-alert:before {
	content: "";
}

.ion-alert-circled:before {
	content: "";
}

.ion-android-add:before {
	content: "";
}

.ion-android-add-circle:before {
	content: "";
}

.ion-android-alarm-clock:before {
	content: "";
}

.ion-android-alert:before {
	content: "";
}

.ion-android-apps:before {
	content: "";
}

.ion-android-archive:before {
	content: "";
}

.ion-android-arrow-back:before {
	content: "";
}

.ion-android-arrow-down:before {
	content: "";
}

.ion-android-arrow-dropdown:before {
	content: "";
}

.ion-android-arrow-dropdown-circle:before {
	content: "";
}

.ion-android-arrow-dropleft:before {
	content: "";
}

.ion-android-arrow-dropleft-circle:before {
	content: "";
}

.ion-android-arrow-dropright:before {
	content: "";
}

.ion-android-arrow-dropright-circle:before {
	content: "";
}

.ion-android-arrow-dropup:before {
	content: "";
}

.ion-android-arrow-dropup-circle:before {
	content: "";
}

.ion-android-arrow-forward:before {
	content: "";
}

.ion-android-arrow-up:before {
	content: "";
}

.ion-android-attach:before {
	content: "";
}

.ion-android-bar:before {
	content: "";
}

.ion-android-bicycle:before {
	content: "";
}

.ion-android-boat:before {
	content: "";
}

.ion-android-bookmark:before {
	content: "";
}

.ion-android-bulb:before {
	content: "";
}

.ion-android-bus:before {
	content: "";
}

.ion-android-calendar:before {
	content: "";
}

.ion-android-call:before {
	content: "";
}

.ion-android-camera:before {
	content: "";
}

.ion-android-cancel:before {
	content: "";
}

.ion-android-car:before {
	content: "";
}

.ion-android-cart:before {
	content: "";
}

.ion-android-chat:before {
	content: "";
}

.ion-android-checkbox:before {
	content: "";
}

.ion-android-checkbox-blank:before {
	content: "";
}

.ion-android-checkbox-outline:before {
	content: "";
}

.ion-android-checkbox-outline-blank:before {
	content: "";
}

.ion-android-checkmark-circle:before {
	content: "";
}

.ion-android-clipboard:before {
	content: "";
}

.ion-android-close:before {
	content: "";
}

.ion-android-cloud:before {
	content: "";
}

.ion-android-cloud-circle:before {
	content: "";
}

.ion-android-cloud-done:before {
	content: "";
}

.ion-android-cloud-outline:before {
	content: "";
}

.ion-android-color-palette:before {
	content: "";
}

.ion-android-compass:before {
	content: "";
}

.ion-android-contact:before {
	content: "";
}

.ion-android-contacts:before {
	content: "";
}

.ion-android-contract:before {
	content: "";
}

.ion-android-create:before {
	content: "";
}

.ion-android-delete:before {
	content: "";
}

.ion-android-desktop:before {
	content: "";
}

.ion-android-document:before {
	content: "";
}

.ion-android-done:before {
	content: "";
}

.ion-android-done-all:before {
	content: "";
}

.ion-android-download:before {
	content: "";
}

.ion-android-drafts:before {
	content: "";
}

.ion-android-exit:before {
	content: "";
}

.ion-android-expand:before {
	content: "";
}

.ion-android-favorite:before {
	content: "";
}

.ion-android-favorite-outline:before {
	content: "";
}

.ion-android-film:before {
	content: "";
}

.ion-android-folder:before {
	content: "";
}

.ion-android-folder-open:before {
	content: "";
}

.ion-android-funnel:before {
	content: "";
}

.ion-android-globe:before {
	content: "";
}

.ion-android-hand:before {
	content: "";
}

.ion-android-hangout:before {
	content: "";
}

.ion-android-happy:before {
	content: "";
}

.ion-android-home:before {
	content: "";
}

.ion-android-image:before {
	content: "";
}

.ion-android-laptop:before {
	content: "";
}

.ion-android-list:before {
	content: "";
}

.ion-android-locate:before {
	content: "";
}

.ion-android-lock:before {
	content: "";
}

.ion-android-mail:before {
	content: "";
}

.ion-android-map:before {
	content: "";
}

.ion-android-menu:before {
	content: "";
}

.ion-android-microphone:before {
	content: "";
}

.ion-android-microphone-off:before {
	content: "";
}

.ion-android-more-horizontal:before {
	content: "";
}

.ion-android-more-vertical:before {
	content: "";
}

.ion-android-navigate:before {
	content: "";
}

.ion-android-notifications:before {
	content: "";
}

.ion-android-notifications-none:before {
	content: "";
}

.ion-android-notifications-off:before {
	content: "";
}

.ion-android-open:before {
	content: "";
}

.ion-android-options:before {
	content: "";
}

.ion-android-people:before {
	content: "";
}

.ion-android-person:before {
	content: "";
}

.ion-android-person-add:before {
	content: "";
}

.ion-android-phone-landscape:before {
	content: "";
}

.ion-android-phone-portrait:before {
	content: "";
}

.ion-android-pin:before {
	content: "";
}

.ion-android-plane:before {
	content: "";
}

.ion-android-playstore:before {
	content: "";
}

.ion-android-print:before {
	content: "";
}

.ion-android-radio-button-off:before {
	content: "";
}

.ion-android-radio-button-on:before {
	content: "";
}

.ion-android-refresh:before {
	content: "";
}

.ion-android-remove:before {
	content: "";
}

.ion-android-remove-circle:before {
	content: "";
}

.ion-android-restaurant:before {
	content: "";
}

.ion-android-sad:before {
	content: "";
}

.ion-android-search:before {
	content: "";
}

.ion-android-send:before {
	content: "";
}

.ion-android-settings:before {
	content: "";
}

.ion-android-share:before {
	content: "";
}

.ion-android-share-alt:before {
	content: "";
}

.ion-android-star:before {
	content: "";
}

.ion-android-star-half:before {
	content: "";
}

.ion-android-star-outline:before {
	content: "";
}

.ion-android-stopwatch:before {
	content: "";
}

.ion-android-subway:before {
	content: "";
}

.ion-android-sunny:before {
	content: "";
}

.ion-android-sync:before {
	content: "";
}

.ion-android-textsms:before {
	content: "";
}

.ion-android-time:before {
	content: "";
}

.ion-android-train:before {
	content: "";
}

.ion-android-unlock:before {
	content: "";
}

.ion-android-upload:before {
	content: "";
}

.ion-android-volume-down:before {
	content: "";
}

.ion-android-volume-mute:before {
	content: "";
}

.ion-android-volume-off:before {
	content: "";
}

.ion-android-volume-up:before {
	content: "";
}

.ion-android-walk:before {
	content: "";
}

.ion-android-warning:before {
	content: "";
}

.ion-android-watch:before {
	content: "";
}

.ion-android-wifi:before {
	content: "";
}

.ion-aperture:before {
	content: "";
}

.ion-archive:before {
	content: "";
}

.ion-arrow-down-a:before {
	content: "";
}

.ion-arrow-down-b:before {
	content: "";
}

.ion-arrow-down-c:before {
	content: "";
}

.ion-arrow-expand:before {
	content: "";
}

.ion-arrow-graph-down-left:before {
	content: "";
}

.ion-arrow-graph-down-right:before {
	content: "";
}

.ion-arrow-graph-up-left:before {
	content: "";
}

.ion-arrow-graph-up-right:before {
	content: "";
}

.ion-arrow-left-a:before {
	content: "";
}

.ion-arrow-left-b:before {
	content: "";
}

.ion-arrow-left-c:before {
	content: "";
}

.ion-arrow-move:before {
	content: "";
}

.ion-arrow-resize:before {
	content: "";
}

.ion-arrow-return-left:before {
	content: "";
}

.ion-arrow-return-right:before {
	content: "";
}

.ion-arrow-right-a:before {
	content: "";
}

.ion-arrow-right-b:before {
	content: "";
}

.ion-arrow-right-c:before {
	content: "";
}

.ion-arrow-shrink:before {
	content: "";
}

.ion-arrow-swap:before {
	content: "";
}

.ion-arrow-up-a:before {
	content: "";
}

.ion-arrow-up-b:before {
	content: "";
}

.ion-arrow-up-c:before {
	content: "";
}

.ion-asterisk:before {
	content: "";
}

.ion-at:before {
	content: "";
}

.ion-backspace:before {
	content: "";
}

.ion-backspace-outline:before {
	content: "";
}

.ion-bag:before {
	content: "";
}

.ion-battery-charging:before {
	content: "";
}

.ion-battery-empty:before {
	content: "";
}

.ion-battery-full:before {
	content: "";
}

.ion-battery-half:before {
	content: "";
}

.ion-battery-low:before {
	content: "";
}

.ion-beaker:before {
	content: "";
}

.ion-beer:before {
	content: "";
}

.ion-bluetooth:before {
	content: "";
}

.ion-bonfire:before {
	content: "";
}

.ion-bookmark:before {
	content: "";
}

.ion-bowtie:before {
	content: "";
}

.ion-briefcase:before {
	content: "";
}

.ion-bug:before {
	content: "";
}

.ion-calculator:before {
	content: "";
}

.ion-calendar:before {
	content: "";
}

.ion-camera:before {
	content: "";
}

.ion-card:before {
	content: "";
}

.ion-cash:before {
	content: "";
}

.ion-chatbox:before {
	content: "";
}

.ion-chatbox-working:before {
	content: "";
}

.ion-chatboxes:before {
	content: "";
}

.ion-chatbubble:before {
	content: "";
}

.ion-chatbubble-working:before {
	content: "";
}

.ion-chatbubbles:before {
	content: "";
}

.ion-checkmark:before {
	content: "";
}

.ion-checkmark-circled:before {
	content: "";
}

.ion-checkmark-round:before {
	content: "";
}

.ion-chevron-down:before {
	content: "";
}

.ion-chevron-left:before {
	content: "";
}

.ion-chevron-right:before {
	content: "";
}

.ion-chevron-up:before {
	content: "";
}

.ion-clipboard:before {
	content: "";
}

.ion-clock:before {
	content: "";
}

.ion-close:before {
	content: "";
}

.ion-close-circled:before {
	content: "";
}

.ion-close-round:before {
	content: "";
}

.ion-closed-captioning:before {
	content: "";
}

.ion-cloud:before {
	content: "";
}

.ion-code:before {
	content: "";
}

.ion-code-download:before {
	content: "";
}

.ion-code-working:before {
	content: "";
}

.ion-coffee:before {
	content: "";
}

.ion-compass:before {
	content: "";
}

.ion-compose:before {
	content: "";
}

.ion-connection-bars:before {
	content: "";
}

.ion-contrast:before {
	content: "";
}

.ion-crop:before {
	content: "";
}

.ion-cube:before {
	content: "";
}

.ion-disc:before {
	content: "";
}

.ion-document:before {
	content: "";
}

.ion-document-text:before {
	content: "";
}

.ion-drag:before {
	content: "";
}

.ion-earth:before {
	content: "";
}

.ion-easel:before {
	content: "";
}

.ion-edit:before {
	content: "";
}

.ion-egg:before {
	content: "";
}

.ion-eject:before {
	content: "";
}

.ion-email:before {
	content: "";
}

.ion-email-unread:before {
	content: "";
}

.ion-erlenmeyer-flask:before {
	content: "";
}

.ion-erlenmeyer-flask-bubbles:before {
	content: "";
}

.ion-eye:before {
	content: "";
}

.ion-eye-disabled:before {
	content: "";
}

.ion-female:before {
	content: "";
}

.ion-filing:before {
	content: "";
}

.ion-film-marker:before {
	content: "";
}

.ion-fireball:before {
	content: "";
}

.ion-flag:before {
	content: "";
}

.ion-flame:before {
	content: "";
}

.ion-flash:before {
	content: "";
}

.ion-flash-off:before {
	content: "";
}

.ion-folder:before {
	content: "";
}

.ion-fork:before {
	content: "";
}

.ion-fork-repo:before {
	content: "";
}

.ion-forward:before {
	content: "";
}

.ion-funnel:before {
	content: "";
}

.ion-gear-a:before {
	content: "";
}

.ion-gear-b:before {
	content: "";
}

.ion-grid:before {
	content: "";
}

.ion-hammer:before {
	content: "";
}

.ion-happy:before {
	content: "";
}

.ion-happy-outline:before {
	content: "";
}

.ion-headphone:before {
	content: "";
}

.ion-heart:before {
	content: "";
}

.ion-heart-broken:before {
	content: "";
}

.ion-help:before {
	content: "";
}

.ion-help-buoy:before {
	content: "";
}

.ion-help-circled:before {
	content: "";
}

.ion-home:before {
	content: "";
}

.ion-icecream:before {
	content: "";
}

.ion-image:before {
	content: "";
}

.ion-images:before {
	content: "";
}

.ion-information:before {
	content: "";
}

.ion-information-circled:before {
	content: "";
}

.ion-ionic:before {
	content: "";
}

.ion-ios-alarm:before {
	content: "";
}

.ion-ios-alarm-outline:before {
	content: "";
}

.ion-ios-albums:before {
	content: "";
}

.ion-ios-albums-outline:before {
	content: "";
}

.ion-ios-americanfootball:before {
	content: "";
}

.ion-ios-americanfootball-outline:before {
	content: "";
}

.ion-ios-analytics:before {
	content: "";
}

.ion-ios-analytics-outline:before {
	content: "";
}

.ion-ios-arrow-back:before {
	content: "";
}

.ion-ios-arrow-down:before {
	content: "";
}

.ion-ios-arrow-forward:before {
	content: "";
}

.ion-ios-arrow-left:before {
	content: "";
}

.ion-ios-arrow-right:before {
	content: "";
}

.ion-ios-arrow-thin-down:before {
	content: "";
}

.ion-ios-arrow-thin-left:before {
	content: "";
}

.ion-ios-arrow-thin-right:before {
	content: "";
}

.ion-ios-arrow-thin-up:before {
	content: "";
}

.ion-ios-arrow-up:before {
	content: "";
}

.ion-ios-at:before {
	content: "";
}

.ion-ios-at-outline:before {
	content: "";
}

.ion-ios-barcode:before {
	content: "";
}

.ion-ios-barcode-outline:before {
	content: "";
}

.ion-ios-baseball:before {
	content: "";
}

.ion-ios-baseball-outline:before {
	content: "";
}

.ion-ios-basketball:before {
	content: "";
}

.ion-ios-basketball-outline:before {
	content: "";
}

.ion-ios-bell:before {
	content: "";
}

.ion-ios-bell-outline:before {
	content: "";
}

.ion-ios-body:before {
	content: "";
}

.ion-ios-body-outline:before {
	content: "";
}

.ion-ios-bolt:before {
	content: "";
}

.ion-ios-bolt-outline:before {
	content: "";
}

.ion-ios-book:before {
	content: "";
}

.ion-ios-book-outline:before {
	content: "";
}

.ion-ios-bookmarks:before {
	content: "";
}

.ion-ios-bookmarks-outline:before {
	content: "";
}

.ion-ios-box:before {
	content: "";
}

.ion-ios-box-outline:before {
	content: "";
}

.ion-ios-briefcase:before {
	content: "";
}

.ion-ios-briefcase-outline:before {
	content: "";
}

.ion-ios-browsers:before {
	content: "";
}

.ion-ios-browsers-outline:before {
	content: "";
}

.ion-ios-calculator:before {
	content: "";
}

.ion-ios-calculator-outline:before {
	content: "";
}

.ion-ios-calendar:before {
	content: "";
}

.ion-ios-calendar-outline:before {
	content: "";
}

.ion-ios-camera:before {
	content: "";
}

.ion-ios-camera-outline:before {
	content: "";
}

.ion-ios-cart:before {
	content: "";
}

.ion-ios-cart-outline:before {
	content: "";
}

.ion-ios-chatboxes:before {
	content: "";
}

.ion-ios-chatboxes-outline:before {
	content: "";
}

.ion-ios-chatbubble:before {
	content: "";
}

.ion-ios-chatbubble-outline:before {
	content: "";
}

.ion-ios-checkmark:before {
	content: "";
}

.ion-ios-checkmark-empty:before {
	content: "";
}

.ion-ios-checkmark-outline:before {
	content: "";
}

.ion-ios-circle-filled:before {
	content: "";
}

.ion-ios-circle-outline:before {
	content: "";
}

.ion-ios-clock:before {
	content: "";
}

.ion-ios-clock-outline:before {
	content: "";
}

.ion-ios-close:before {
	content: "";
}

.ion-ios-close-empty:before {
	content: "";
}

.ion-ios-close-outline:before {
	content: "";
}

.ion-ios-cloud:before {
	content: "";
}

.ion-ios-cloud-download:before {
	content: "";
}

.ion-ios-cloud-download-outline:before {
	content: "";
}

.ion-ios-cloud-outline:before {
	content: "";
}

.ion-ios-cloud-upload:before {
	content: "";
}

.ion-ios-cloud-upload-outline:before {
	content: "";
}

.ion-ios-cloudy:before {
	content: "";
}

.ion-ios-cloudy-night:before {
	content: "";
}

.ion-ios-cloudy-night-outline:before {
	content: "";
}

.ion-ios-cloudy-outline:before {
	content: "";
}

.ion-ios-cog:before {
	content: "";
}

.ion-ios-cog-outline:before {
	content: "";
}

.ion-ios-color-filter:before {
	content: "";
}

.ion-ios-color-filter-outline:before {
	content: "";
}

.ion-ios-color-wand:before {
	content: "";
}

.ion-ios-color-wand-outline:before {
	content: "";
}

.ion-ios-compose:before {
	content: "";
}

.ion-ios-compose-outline:before {
	content: "";
}

.ion-ios-contact:before {
	content: "";
}

.ion-ios-contact-outline:before {
	content: "";
}

.ion-ios-copy:before {
	content: "";
}

.ion-ios-copy-outline:before {
	content: "";
}

.ion-ios-crop:before {
	content: "";
}

.ion-ios-crop-strong:before {
	content: "";
}

.ion-ios-download:before {
	content: "";
}

.ion-ios-download-outline:before {
	content: "";
}

.ion-ios-drag:before {
	content: "";
}

.ion-ios-email:before {
	content: "";
}

.ion-ios-email-outline:before {
	content: "";
}

.ion-ios-eye:before {
	content: "";
}

.ion-ios-eye-outline:before {
	content: "";
}

.ion-ios-fastforward:before {
	content: "";
}

.ion-ios-fastforward-outline:before {
	content: "";
}

.ion-ios-filing:before {
	content: "";
}

.ion-ios-filing-outline:before {
	content: "";
}

.ion-ios-film:before {
	content: "";
}

.ion-ios-film-outline:before {
	content: "";
}

.ion-ios-flag:before {
	content: "";
}

.ion-ios-flag-outline:before {
	content: "";
}

.ion-ios-flame:before {
	content: "";
}

.ion-ios-flame-outline:before {
	content: "";
}

.ion-ios-flask:before {
	content: "";
}

.ion-ios-flask-outline:before {
	content: "";
}

.ion-ios-flower:before {
	content: "";
}

.ion-ios-flower-outline:before {
	content: "";
}

.ion-ios-folder:before {
	content: "";
}

.ion-ios-folder-outline:before {
	content: "";
}

.ion-ios-football:before {
	content: "";
}

.ion-ios-football-outline:before {
	content: "";
}

.ion-ios-game-controller-a:before {
	content: "";
}

.ion-ios-game-controller-a-outline:before {
	content: "";
}

.ion-ios-game-controller-b:before {
	content: "";
}

.ion-ios-game-controller-b-outline:before {
	content: "";
}

.ion-ios-gear:before {
	content: "";
}

.ion-ios-gear-outline:before {
	content: "";
}

.ion-ios-glasses:before {
	content: "";
}

.ion-ios-glasses-outline:before {
	content: "";
}

.ion-ios-grid-view:before {
	content: "";
}

.ion-ios-grid-view-outline:before {
	content: "";
}

.ion-ios-heart:before {
	content: "";
}

.ion-ios-heart-outline:before {
	content: "";
}

.ion-ios-help:before {
	content: "";
}

.ion-ios-help-empty:before {
	content: "";
}

.ion-ios-help-outline:before {
	content: "";
}

.ion-ios-home:before {
	content: "";
}

.ion-ios-home-outline:before {
	content: "";
}

.ion-ios-infinite:before {
	content: "";
}

.ion-ios-infinite-outline:before {
	content: "";
}

.ion-ios-information:before {
	content: "";
}

.ion-ios-information-empty:before {
	content: "";
}

.ion-ios-information-outline:before {
	content: "";
}

.ion-ios-ionic-outline:before {
	content: "";
}

.ion-ios-keypad:before {
	content: "";
}

.ion-ios-keypad-outline:before {
	content: "";
}

.ion-ios-lightbulb:before {
	content: "";
}

.ion-ios-lightbulb-outline:before {
	content: "";
}

.ion-ios-list:before {
	content: "";
}

.ion-ios-list-outline:before {
	content: "";
}

.ion-ios-location:before {
	content: "";
}

.ion-ios-location-outline:before {
	content: "";
}

.ion-ios-locked:before {
	content: "";
}

.ion-ios-locked-outline:before {
	content: "";
}

.ion-ios-loop:before {
	content: "";
}

.ion-ios-loop-strong:before {
	content: "";
}

.ion-ios-medical:before {
	content: "";
}

.ion-ios-medical-outline:before {
	content: "";
}

.ion-ios-medkit:before {
	content: "";
}

.ion-ios-medkit-outline:before {
	content: "";
}

.ion-ios-mic:before {
	content: "";
}

.ion-ios-mic-off:before {
	content: "";
}

.ion-ios-mic-outline:before {
	content: "";
}

.ion-ios-minus:before {
	content: "";
}

.ion-ios-minus-empty:before {
	content: "";
}

.ion-ios-minus-outline:before {
	content: "";
}

.ion-ios-monitor:before {
	content: "";
}

.ion-ios-monitor-outline:before {
	content: "";
}

.ion-ios-moon:before {
	content: "";
}

.ion-ios-moon-outline:before {
	content: "";
}

.ion-ios-more:before {
	content: "";
}

.ion-ios-more-outline:before {
	content: "";
}

.ion-ios-musical-note:before {
	content: "";
}

.ion-ios-musical-notes:before {
	content: "";
}

.ion-ios-navigate:before {
	content: "";
}

.ion-ios-navigate-outline:before {
	content: "";
}

.ion-ios-nutrition:before {
	content: "";
}

.ion-ios-nutrition-outline:before {
	content: "";
}

.ion-ios-paper:before {
	content: "";
}

.ion-ios-paper-outline:before {
	content: "";
}

.ion-ios-paperplane:before {
	content: "";
}

.ion-ios-paperplane-outline:before {
	content: "";
}

.ion-ios-partlysunny:before {
	content: "";
}

.ion-ios-partlysunny-outline:before {
	content: "";
}

.ion-ios-pause:before {
	content: "";
}

.ion-ios-pause-outline:before {
	content: "";
}

.ion-ios-paw:before {
	content: "";
}

.ion-ios-paw-outline:before {
	content: "";
}

.ion-ios-people:before {
	content: "";
}

.ion-ios-people-outline:before {
	content: "";
}

.ion-ios-person:before {
	content: "";
}

.ion-ios-person-outline:before {
	content: "";
}

.ion-ios-personadd:before {
	content: "";
}

.ion-ios-personadd-outline:before {
	content: "";
}

.ion-ios-photos:before {
	content: "";
}

.ion-ios-photos-outline:before {
	content: "";
}

.ion-ios-pie:before {
	content: "";
}

.ion-ios-pie-outline:before {
	content: "";
}

.ion-ios-pint:before {
	content: "";
}

.ion-ios-pint-outline:before {
	content: "";
}

.ion-ios-play:before {
	content: "";
}

.ion-ios-play-outline:before {
	content: "";
}

.ion-ios-plus:before {
	content: "";
}

.ion-ios-plus-empty:before {
	content: "";
}

.ion-ios-plus-outline:before {
	content: "";
}

.ion-ios-pricetag:before {
	content: "";
}

.ion-ios-pricetag-outline:before {
	content: "";
}

.ion-ios-pricetags:before {
	content: "";
}

.ion-ios-pricetags-outline:before {
	content: "";
}

.ion-ios-printer:before {
	content: "";
}

.ion-ios-printer-outline:before {
	content: "";
}

.ion-ios-pulse:before {
	content: "";
}

.ion-ios-pulse-strong:before {
	content: "";
}

.ion-ios-rainy:before {
	content: "";
}

.ion-ios-rainy-outline:before {
	content: "";
}

.ion-ios-recording:before {
	content: "";
}

.ion-ios-recording-outline:before {
	content: "";
}

.ion-ios-redo:before {
	content: "";
}

.ion-ios-redo-outline:before {
	content: "";
}

.ion-ios-refresh:before {
	content: "";
}

.ion-ios-refresh-empty:before {
	content: "";
}

.ion-ios-refresh-outline:before {
	content: "";
}

.ion-ios-reload:before {
	content: "";
}

.ion-ios-reverse-camera:before {
	content: "";
}

.ion-ios-reverse-camera-outline:before {
	content: "";
}

.ion-ios-rewind:before {
	content: "";
}

.ion-ios-rewind-outline:before {
	content: "";
}

.ion-ios-rose:before {
	content: "";
}

.ion-ios-rose-outline:before {
	content: "";
}

.ion-ios-search:before {
	content: "";
}

.ion-ios-search-strong:before {
	content: "";
}

.ion-ios-settings:before {
	content: "";
}

.ion-ios-settings-strong:before {
	content: "";
}

.ion-ios-shuffle:before {
	content: "";
}

.ion-ios-shuffle-strong:before {
	content: "";
}

.ion-ios-skipbackward:before {
	content: "";
}

.ion-ios-skipbackward-outline:before {
	content: "";
}

.ion-ios-skipforward:before {
	content: "";
}

.ion-ios-skipforward-outline:before {
	content: "";
}

.ion-ios-snowy:before {
	content: "";
}

.ion-ios-speedometer:before {
	content: "";
}

.ion-ios-speedometer-outline:before {
	content: "";
}

.ion-ios-star:before {
	content: "";
}

.ion-ios-star-half:before {
	content: "";
}

.ion-ios-star-outline:before {
	content: "";
}

.ion-ios-stopwatch:before {
	content: "";
}

.ion-ios-stopwatch-outline:before {
	content: "";
}

.ion-ios-sunny:before {
	content: "";
}

.ion-ios-sunny-outline:before {
	content: "";
}

.ion-ios-telephone:before {
	content: "";
}

.ion-ios-telephone-outline:before {
	content: "";
}

.ion-ios-tennisball:before {
	content: "";
}

.ion-ios-tennisball-outline:before {
	content: "";
}

.ion-ios-thunderstorm:before {
	content: "";
}

.ion-ios-thunderstorm-outline:before {
	content: "";
}

.ion-ios-time:before {
	content: "";
}

.ion-ios-time-outline:before {
	content: "";
}

.ion-ios-timer:before {
	content: "";
}

.ion-ios-timer-outline:before {
	content: "";
}

.ion-ios-toggle:before {
	content: "";
}

.ion-ios-toggle-outline:before {
	content: "";
}

.ion-ios-trash:before {
	content: "";
}

.ion-ios-trash-outline:before {
	content: "";
}

.ion-ios-undo:before {
	content: "";
}

.ion-ios-undo-outline:before {
	content: "";
}

.ion-ios-unlocked:before {
	content: "";
}

.ion-ios-unlocked-outline:before {
	content: "";
}

.ion-ios-upload:before {
	content: "";
}

.ion-ios-upload-outline:before {
	content: "";
}

.ion-ios-videocam:before {
	content: "";
}

.ion-ios-videocam-outline:before {
	content: "";
}

.ion-ios-volume-high:before {
	content: "";
}

.ion-ios-volume-low:before {
	content: "";
}

.ion-ios-wineglass:before {
	content: "";
}

.ion-ios-wineglass-outline:before {
	content: "";
}

.ion-ios-world:before {
	content: "";
}

.ion-ios-world-outline:before {
	content: "";
}

.ion-ipad:before {
	content: "";
}

.ion-iphone:before {
	content: "";
}

.ion-ipod:before {
	content: "";
}

.ion-jet:before {
	content: "";
}

.ion-key:before {
	content: "";
}

.ion-knife:before {
	content: "";
}

.ion-laptop:before {
	content: "";
}

.ion-leaf:before {
	content: "";
}

.ion-levels:before {
	content: "";
}

.ion-lightbulb:before {
	content: "";
}

.ion-link:before {
	content: "";
}

.ion-load-a:before {
	content: "";
}

.ion-load-b:before {
	content: "";
}

.ion-load-c:before {
	content: "";
}

.ion-load-d:before {
	content: "";
}

.ion-location:before {
	content: "";
}

.ion-lock-combination:before {
	content: "";
}

.ion-locked:before {
	content: "";
}

.ion-log-in:before {
	content: "";
}

.ion-log-out:before {
	content: "";
}

.ion-loop:before {
	content: "";
}

.ion-magnet:before {
	content: "";
}

.ion-male:before {
	content: "";
}

.ion-man:before {
	content: "";
}

.ion-map:before {
	content: "";
}

.ion-medkit:before {
	content: "";
}

.ion-merge:before {
	content: "";
}

.ion-mic-a:before {
	content: "";
}

.ion-mic-b:before {
	content: "";
}

.ion-mic-c:before {
	content: "";
}

.ion-minus:before {
	content: "";
}

.ion-minus-circled:before {
	content: "";
}

.ion-minus-round:before {
	content: "";
}

.ion-model-s:before {
	content: "";
}

.ion-monitor:before {
	content: "";
}

.ion-more:before {
	content: "";
}

.ion-mouse:before {
	content: "";
}

.ion-music-note:before {
	content: "";
}

.ion-navicon:before {
	content: "";
}

.ion-navicon-round:before {
	content: "";
}

.ion-navigate:before {
	content: "";
}

.ion-network:before {
	content: "";
}

.ion-no-smoking:before {
	content: "";
}

.ion-nuclear:before {
	content: "";
}

.ion-outlet:before {
	content: "";
}

.ion-paintbrush:before {
	content: "";
}

.ion-paintbucket:before {
	content: "";
}

.ion-paper-airplane:before {
	content: "";
}

.ion-paperclip:before {
	content: "";
}

.ion-pause:before {
	content: "";
}

.ion-person:before {
	content: "";
}

.ion-person-add:before {
	content: "";
}

.ion-person-stalker:before {
	content: "";
}

.ion-pie-graph:before {
	content: "";
}

.ion-pin:before {
	content: "";
}

.ion-pinpoint:before {
	content: "";
}

.ion-pizza:before {
	content: "";
}

.ion-plane:before {
	content: "";
}

.ion-planet:before {
	content: "";
}

.ion-play:before {
	content: "";
}

.ion-playstation:before {
	content: "";
}

.ion-plus:before {
	content: "";
}

.ion-plus-circled:before {
	content: "";
}

.ion-plus-round:before {
	content: "";
}

.ion-podium:before {
	content: "";
}

.ion-pound:before {
	content: "";
}

.ion-power:before {
	content: "";
}

.ion-pricetag:before {
	content: "";
}

.ion-pricetags:before {
	content: "";
}

.ion-printer:before {
	content: "";
}

.ion-pull-request:before {
	content: "";
}

.ion-qr-scanner:before {
	content: "";
}

.ion-quote:before {
	content: "";
}

.ion-radio-waves:before {
	content: "";
}

.ion-record:before {
	content: "";
}

.ion-refresh:before {
	content: "";
}

.ion-reply:before {
	content: "";
}

.ion-reply-all:before {
	content: "";
}

.ion-ribbon-a:before {
	content: "";
}

.ion-ribbon-b:before {
	content: "";
}

.ion-sad:before {
	content: "";
}

.ion-sad-outline:before {
	content: "";
}

.ion-scissors:before {
	content: "";
}

.ion-search:before {
	content: "";
}

.ion-settings:before {
	content: "";
}

.ion-share:before {
	content: "";
}

.ion-shuffle:before {
	content: "";
}

.ion-skip-backward:before {
	content: "";
}

.ion-skip-forward:before {
	content: "";
}

.ion-social-android:before {
	content: "";
}

.ion-social-android-outline:before {
	content: "";
}

.ion-social-angular:before {
	content: "";
}

.ion-social-angular-outline:before {
	content: "";
}

.ion-social-apple:before {
	content: "";
}

.ion-social-apple-outline:before {
	content: "";
}

.ion-social-bitcoin:before {
	content: "";
}

.ion-social-bitcoin-outline:before {
	content: "";
}

.ion-social-buffer:before {
	content: "";
}

.ion-social-buffer-outline:before {
	content: "";
}

.ion-social-chrome:before {
	content: "";
}

.ion-social-chrome-outline:before {
	content: "";
}

.ion-social-codepen:before {
	content: "";
}

.ion-social-codepen-outline:before {
	content: "";
}

.ion-social-css3:before {
	content: "";
}

.ion-social-css3-outline:before {
	content: "";
}

.ion-social-designernews:before {
	content: "";
}

.ion-social-designernews-outline:before {
	content: "";
}

.ion-social-dribbble:before {
	content: "";
}

.ion-social-dribbble-outline:before {
	content: "";
}

.ion-social-dropbox:before {
	content: "";
}

.ion-social-dropbox-outline:before {
	content: "";
}

.ion-social-euro:before {
	content: "";
}

.ion-social-euro-outline:before {
	content: "";
}

.ion-social-facebook:before {
	content: "";
}

.ion-social-facebook-outline:before {
	content: "";
}

.ion-social-foursquare:before {
	content: "";
}

.ion-social-foursquare-outline:before {
	content: "";
}

.ion-social-freebsd-devil:before {
	content: "";
}

.ion-social-github:before {
	content: "";
}

.ion-social-github-outline:before {
	content: "";
}

.ion-social-google:before {
	content: "";
}

.ion-social-google-outline:before {
	content: "";
}

.ion-social-googleplus:before {
	content: "";
}

.ion-social-googleplus-outline:before {
	content: "";
}

.ion-social-hackernews:before {
	content: "";
}

.ion-social-hackernews-outline:before {
	content: "";
}

.ion-social-html5:before {
	content: "";
}

.ion-social-html5-outline:before {
	content: "";
}

.ion-social-instagram:before {
	content: "";
}

.ion-social-instagram-outline:before {
	content: "";
}

.ion-social-javascript:before {
	content: "";
}

.ion-social-javascript-outline:before {
	content: "";
}

.ion-social-linkedin:before {
	content: "";
}

.ion-social-linkedin-outline:before {
	content: "";
}

.ion-social-markdown:before {
	content: "";
}

.ion-social-nodejs:before {
	content: "";
}

.ion-social-octocat:before {
	content: "";
}

.ion-social-pinterest:before {
	content: "";
}

.ion-social-pinterest-outline:before {
	content: "";
}

.ion-social-python:before {
	content: "";
}

.ion-social-reddit:before {
	content: "";
}

.ion-social-reddit-outline:before {
	content: "";
}

.ion-social-rss:before {
	content: "";
}

.ion-social-rss-outline:before {
	content: "";
}

.ion-social-sass:before {
	content: "";
}

.ion-social-skype:before {
	content: "";
}

.ion-social-skype-outline:before {
	content: "";
}

.ion-social-snapchat:before {
	content: "";
}

.ion-social-snapchat-outline:before {
	content: "";
}

.ion-social-tumblr:before {
	content: "";
}

.ion-social-tumblr-outline:before {
	content: "";
}

.ion-social-tux:before {
	content: "";
}

.ion-social-twitch:before {
	content: "";
}

.ion-social-twitch-outline:before {
	content: "";
}

.ion-social-twitter:before {
	content: "";
}

.ion-social-twitter-outline:before {
	content: "";
}

.ion-social-usd:before {
	content: "";
}

.ion-social-usd-outline:before {
	content: "";
}

.ion-social-vimeo:before {
	content: "";
}

.ion-social-vimeo-outline:before {
	content: "";
}

.ion-social-whatsapp:before {
	content: "";
}

.ion-social-whatsapp-outline:before {
	content: "";
}

.ion-social-windows:before {
	content: "";
}

.ion-social-windows-outline:before {
	content: "";
}

.ion-social-wordpress:before {
	content: "";
}

.ion-social-wordpress-outline:before {
	content: "";
}

.ion-social-yahoo:before {
	content: "";
}

.ion-social-yahoo-outline:before {
	content: "";
}

.ion-social-yen:before {
	content: "";
}

.ion-social-yen-outline:before {
	content: "";
}

.ion-social-youtube:before {
	content: "";
}

.ion-social-youtube-outline:before {
	content: "";
}

.ion-soup-can:before {
	content: "";
}

.ion-soup-can-outline:before {
	content: "";
}

.ion-speakerphone:before {
	content: "";
}

.ion-speedometer:before {
	content: "";
}

.ion-spoon:before {
	content: "";
}

.ion-star:before {
	content: "";
}

.ion-stats-bars:before {
	content: "";
}

.ion-steam:before {
	content: "";
}

.ion-stop:before {
	content: "";
}

.ion-thermometer:before {
	content: "";
}

.ion-thumbsdown:before {
	content: "";
}

.ion-thumbsup:before {
	content: "";
}

.ion-toggle:before {
	content: "";
}

.ion-toggle-filled:before {
	content: "";
}

.ion-transgender:before {
	content: "";
}

.ion-trash-a:before {
	content: "";
}

.ion-trash-b:before {
	content: "";
}

.ion-trophy:before {
	content: "";
}

.ion-tshirt:before {
	content: "";
}

.ion-tshirt-outline:before {
	content: "";
}

.ion-umbrella:before {
	content: "";
}

.ion-university:before {
	content: "";
}

.ion-unlocked:before {
	content: "";
}

.ion-upload:before {
	content: "";
}

.ion-usb:before {
	content: "";
}

.ion-videocamera:before {
	content: "";
}

.ion-volume-high:before {
	content: "";
}

.ion-volume-low:before {
	content: "";
}

.ion-volume-medium:before {
	content: "";
}

.ion-volume-mute:before {
	content: "";
}

.ion-wand:before {
	content: "";
}

.ion-waterdrop:before {
	content: "";
}

.ion-wifi:before {
	content: "";
}

.ion-wineglass:before {
	content: "";
}

.ion-woman:before {
	content: "";
}

.ion-wrench:before {
	content: "";
}

.ion-xbox:before {
	content: "";
}

/**
 * Swiper 4.2.6
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2018 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: May 1, 2018
 */
.swiper-container {
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	list-style: none;
	padding: 0;
	/* Fix of Webkit flickering */
	z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
	float: left;
}

.swiper-container-vertical > .swiper-wrapper {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.swiper-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	transition-property: transform;
	transition-property:
		transform,
		-webkit-transform;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
	-webkit-transform: translate3d(0px, 0, 0);
	transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
	margin: 0 auto;
}

.swiper-slide {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 100%;
	height: 100%;
	position: relative;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	transition-property: transform;
	transition-property:
		transform,
		-webkit-transform;
}

.swiper-invisible-blank-slide {
	visibility: hidden;
}

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
	height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-transition-property:
		height,
		-webkit-transform;
	transition-property:
		height,
		-webkit-transform;
	transition-property: transform, height;
	transition-property:
		transform,
		height,
		-webkit-transform;
}

/* 3D Effects */
.swiper-container-3d {
	-webkit-perspective: 1200px;
	perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
	background-image: -webkit-gradient(
		linear,
		right top,
		left top,
		from(rgba(0, 0, 0, 0.5)),
		to(rgba(0, 0, 0, 0))
	);
	background-image: linear-gradient(
		to left,
		rgba(0, 0, 0, 0.5),
		rgba(0, 0, 0, 0)
	);
}

.swiper-container-3d .swiper-slide-shadow-right {
	background-image: -webkit-gradient(
		linear,
		left top,
		right top,
		from(rgba(0, 0, 0, 0.5)),
		to(rgba(0, 0, 0, 0))
	);
	background-image: linear-gradient(
		to right,
		rgba(0, 0, 0, 0.5),
		rgba(0, 0, 0, 0)
	);
}

.swiper-container-3d .swiper-slide-shadow-top {
	background-image: -webkit-gradient(
		linear,
		left bottom,
		left top,
		from(rgba(0, 0, 0, 0.5)),
		to(rgba(0, 0, 0, 0))
	);
	background-image: linear-gradient(
		to top,
		rgba(0, 0, 0, 0.5),
		rgba(0, 0, 0, 0)
	);
}

.swiper-container-3d .swiper-slide-shadow-bottom {
	background-image: -webkit-gradient(
		linear,
		left top,
		left bottom,
		from(rgba(0, 0, 0, 0.5)),
		to(rgba(0, 0, 0, 0))
	);
	background-image: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0.5),
		rgba(0, 0, 0, 0)
	);
}

/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
	-ms-touch-action: pan-y;
	touch-action: pan-y;
}

.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
	-ms-touch-action: pan-x;
	touch-action: pan-x;
}

.swiper-button-prev,
.swiper-button-next {
	position: absolute;
	top: 50%;
	width: 27px;
	height: 44px;
	margin-top: -22px;
	z-index: 10;
	cursor: pointer;
	background-size: 27px 44px;
	background-position: center;
	background-repeat: no-repeat;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
	opacity: 0.35;
	cursor: auto;
	pointer-events: none;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
	left: 10px;
	right: auto;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
	right: 10px;
	left: auto;
}

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-lock {
	display: none;
}

.swiper-pagination {
	position: absolute;
	text-align: center;
	-webkit-transition: 300ms opacity;
	transition: 300ms opacity;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
	opacity: 0;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
	bottom: 10px;
	left: 0;
	width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
	overflow: hidden;
	font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	-webkit-transform: scale(0.33);
	transform: scale(0.33);
	position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
	-webkit-transform: scale(1);
	transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
	-webkit-transform: scale(1);
	transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
	-webkit-transform: scale(0.66);
	transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
	-webkit-transform: scale(0.33);
	transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
	-webkit-transform: scale(0.66);
	transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
	-webkit-transform: scale(0.33);
	transform: scale(0.33);
}

.swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	display: inline-block;
	border-radius: 100%;
	background: #000;
	opacity: 0.2;
}

button.swiper-pagination-bullet {
	border: none;
	margin: 0;
	padding: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
	cursor: pointer;
}

.swiper-pagination-bullet-active {
	opacity: 1;
	background: #007aff;
}

.swiper-container-vertical > .swiper-pagination-bullets {
	right: 10px;
	top: 50%;
	-webkit-transform: translate3d(0px, -50%, 0);
	transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical
	> .swiper-pagination-bullets
	.swiper-pagination-bullet {
	margin: 6px 0;
	display: block;
}

.swiper-container-vertical
	> .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 8px;
}

.swiper-container-vertical
	> .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
	.swiper-pagination-bullet {
	display: inline-block;
	-webkit-transition:
		200ms top,
		200ms -webkit-transform;
	transition:
		200ms top,
		200ms -webkit-transform;
	transition:
		200ms transform,
		200ms top;
	transition:
		200ms transform,
		200ms top,
		200ms -webkit-transform;
}

.swiper-container-horizontal
	> .swiper-pagination-bullets
	.swiper-pagination-bullet {
	margin: 0 4px;
}

.swiper-container-horizontal
	> .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	white-space: nowrap;
}

.swiper-container-horizontal
	> .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
	.swiper-pagination-bullet {
	-webkit-transition:
		200ms left,
		200ms -webkit-transform;
	transition:
		200ms left,
		200ms -webkit-transform;
	transition:
		200ms transform,
		200ms left;
	transition:
		200ms transform,
		200ms left,
		200ms -webkit-transform;
}

.swiper-container-horizontal.swiper-container-rtl
	> .swiper-pagination-bullets-dynamic
	.swiper-pagination-bullet {
	-webkit-transition:
		200ms right,
		200ms -webkit-transform;
	transition:
		200ms right,
		200ms -webkit-transform;
	transition:
		200ms transform,
		200ms right;
	transition:
		200ms transform,
		200ms right,
		200ms -webkit-transform;
}

/* Progress */
.swiper-pagination-progressbar {
	background: rgba(0, 0, 0, 0.25);
	position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
	background: #007aff;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	-webkit-transform: scale(0);
	transform: scale(0);
	-webkit-transform-origin: left top;
	transform-origin: left top;
}

.swiper-container-rtl
	.swiper-pagination-progressbar
	.swiper-pagination-progressbar-fill {
	-webkit-transform-origin: right top;
	transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical
	> .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
	width: 100%;
	height: 4px;
	left: 0;
	top: 0;
}

.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal
	> .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
	width: 4px;
	height: 100%;
	left: 0;
	top: 0;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
	background: #ffffff;
}

.swiper-pagination-progressbar.swiper-pagination-white {
	background: rgba(255, 255, 255, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-white
	.swiper-pagination-progressbar-fill {
	background: #ffffff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
	background: #000000;
}

.swiper-pagination-progressbar.swiper-pagination-black {
	background: rgba(0, 0, 0, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-black
	.swiper-pagination-progressbar-fill {
	background: #000000;
}

.swiper-pagination-lock {
	display: none;
}

/* Scrollbar */
.swiper-scrollbar {
	border-radius: 10px;
	position: relative;
	-ms-touch-action: none;
	background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
	position: absolute;
	left: 1%;
	bottom: 3px;
	z-index: 50;
	height: 5px;
	width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
	position: absolute;
	right: 3px;
	top: 1%;
	z-index: 50;
	width: 5px;
	height: 98%;
}

.swiper-scrollbar-drag {
	height: 100%;
	width: 100%;
	position: relative;
	background: rgba(0, 0, 0, 0.5);
	border-radius: 10px;
	left: 0;
	top: 0;
}

.swiper-scrollbar-cursor-drag {
	cursor: move;
}

.swiper-scrollbar-lock {
	display: none;
}

.swiper-zoom-container {
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
	max-width: 100%;
	max-height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}

.swiper-slide-zoomed {
	cursor: move;
}

/* Preloader */
.swiper-lazy-preloader {
	width: 42px;
	height: 42px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -21px;
	margin-top: -21px;
	z-index: 10;
	-webkit-transform-origin: 50%;
	transform-origin: 50%;
	-webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
	animation: swiper-preloader-spin 1s steps(12, end) infinite;
}

.swiper-lazy-preloader:after {
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
	background-position: 50%;
	background-size: 100%;
	background-repeat: no-repeat;
}

.swiper-lazy-preloader-white:after {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

@-webkit-keyframes swiper-preloader-spin {
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes swiper-preloader-spin {
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

/* a11y */
.swiper-container .swiper-notification {
	position: absolute;
	left: 0;
	top: 0;
	pointer-events: none;
	opacity: 0;
	z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
	pointer-events: none;
	-webkit-transition-property: opacity;
	transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
	pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
	pointer-events: auto;
}

.swiper-container-cube {
	overflow: visible;
}

.swiper-container-cube .swiper-slide {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	z-index: 1;
	visibility: hidden;
	-webkit-transform-origin: 0 0;
	transform-origin: 0 0;
	width: 100%;
	height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
	pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
	-webkit-transform-origin: 100% 0;
	transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
	pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
	pointer-events: auto;
	visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
	z-index: 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
	position: absolute;
	left: 0;
	bottom: 0px;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: 0.6;
	-webkit-filter: blur(50px);
	filter: blur(50px);
	z-index: 0;
}

.swiper-container-flip {
	overflow: visible;
}

.swiper-container-flip .swiper-slide {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
	pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
	pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
	z-index: 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.swiper-container-coverflow .swiper-wrapper {
	/* Windows 8 IE 10 fix */
	-ms-perspective: 1200px;
}

/*! Lity - v2.3.1 - 2018-04-20
* http://sorgalla.com/lity/
* Copyright (c) 2015-2018 Jan Sorgalla; Licensed MIT */
.lity {
	z-index: 9990;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	white-space: nowrap;
	background: #0b0b0b;
	background: rgba(0, 0, 0, 0.9);
	outline: none !important;
	opacity: 0;
	-webkit-transition: opacity 0.3s ease;
	transition: opacity 0.3s ease;
}

.lity.lity-opened {
	opacity: 1;
}

.lity.lity-closed {
	opacity: 0;
}

.lity * {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.lity-wrap {
	z-index: 9990;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	text-align: center;
	outline: none !important;
}

.lity-wrap:before {
	content: "";
	display: inline-block;
	height: 100%;
	vertical-align: middle;
	margin-right: -0.25em;
}

.lity-loader {
	z-index: 9991;
	color: #fff;
	position: absolute;
	top: 50%;
	margin-top: -0.8em;
	width: 100%;
	text-align: center;
	font-size: 14px;
	font-family: Arial, Helvetica, sans-serif;
	opacity: 0;
	-webkit-transition: opacity 0.3s ease;
	transition: opacity 0.3s ease;
}

.lity-loading .lity-loader {
	opacity: 1;
}

.lity-container {
	z-index: 9992;
	position: relative;
	text-align: left;
	vertical-align: middle;
	display: inline-block;
	white-space: normal;
	max-width: 100%;
	max-height: 100%;
	outline: none !important;
}

.lity-content {
	z-index: 9993;
	width: 100%;
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: -webkit-transform 0.3s ease;
	transition: -webkit-transform 0.3s ease;
	transition: transform 0.3s ease;
	transition:
		transform 0.3s ease,
		-webkit-transform 0.3s ease;
}

.lity-loading .lity-content,
.lity-closed .lity-content {
	-webkit-transform: scale(0.8);
	transform: scale(0.8);
}

.lity-content:after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	display: block;
	right: 0;
	width: auto;
	height: auto;
	z-index: -1;
	-webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

.lity-close {
	z-index: 9994;
	width: 35px;
	height: 35px;
	position: fixed;
	right: 0;
	top: 0;
	-webkit-appearance: none;
	cursor: pointer;
	text-decoration: none;
	text-align: center;
	padding: 0;
	color: #fff;
	font-style: normal;
	font-size: 35px;
	font-family: Arial, Baskerville, monospace;
	line-height: 35px;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
	border: 0;
	background: none;
	outline: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.lity-close::-moz-focus-inner {
	border: 0;
	padding: 0;
}

.lity-close:hover,
.lity-close:focus,
.lity-close:active,
.lity-close:visited {
	text-decoration: none;
	text-align: center;
	padding: 0;
	color: #fff;
	font-style: normal;
	font-size: 35px;
	font-family: Arial, Baskerville, monospace;
	line-height: 35px;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
	border: 0;
	background: none;
	outline: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.lity-close:active {
	top: 1px;
}

/* Image */
.lity-image img {
	max-width: 100%;
	display: block;
	line-height: 0;
	border: 0;
}

/* iFrame */
.lity-iframe .lity-container,
.lity-youtube .lity-container,
.lity-vimeo .lity-container,
.lity-facebookvideo .lity-container,
.lity-googlemaps .lity-container {
	width: 100%;
	max-width: 964px;
}

.lity-iframe-container {
	width: 100%;
	height: 0;
	padding-top: 56.25%;
	overflow: auto;
	pointer-events: auto;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-overflow-scrolling: touch;
}

.lity-iframe-container iframe {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
	background: #000;
}

.lity-hide {
	display: none;
}

/* iCheck plugin Flat skin, yellow
----------------------------------- */
.icheckbox_flat-yellow,
.iradio_flat-yellow {
	display: inline-block;
	vertical-align: middle;
	margin: 0;
	padding: 0;
	width: 20px;
	height: 20px;
	background: url("../images/icheck/yellow.png") no-repeat;
	border: none;
	cursor: pointer;
}

.icheckbox_flat-yellow {
	background-position: 0 0;
}

.icheckbox_flat-yellow.checked {
	background-position: -22px 0;
}

.icheckbox_flat-yellow.disabled {
	background-position: -44px 0;
	cursor: default;
}

.icheckbox_flat-yellow.checked.disabled {
	background-position: -66px 0;
}

.iradio_flat-yellow {
	background-position: -88px 0;
}

.iradio_flat-yellow.checked {
	background-position: -110px 0;
}

.iradio_flat-yellow.disabled {
	background-position: -132px 0;
	cursor: default;
}

.iradio_flat-yellow.checked.disabled {
	background-position: -154px 0;
}

/* HiDPI support */
@media (-webkit-min-device-pixel-ratio: 1.25),
	(min-resolution: 120dpi),
	(min-resolution: 1.25dppx) {
	.icheckbox_flat-yellow,
	.iradio_flat-yellow {
		background-image: url("../images/icheck/yellow%402x.png");
		background-size: 176px 22px;
	}
}

/*!
Chosen, a Select Box Enhancer for jQuery and Prototype
by Patrick Filler for Harvest, http://getharvest.com

Version 1.8.5
Full source at https://github.com/harvesthq/chosen
Copyright (c) 2011-2018 Harvest http://getharvest.com

MIT License, https://github.com/harvesthq/chosen/blob/master/LICENSE.md
This file is generated by `grunt build`, do not edit it by hand.
*/
/* @group Base */
.chosen-container {
	font-size: 14px;
	font-size: 0.875rem;
	position: relative;
	display: inline-block;
	vertical-align: middle;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.chosen-container * {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.chosen-container .chosen-drop {
	position: absolute;
	top: 100%;
	z-index: 1010;
	display: none;
	width: 100%;
	border: 1px solid #dddddd;
	border-top: 0;
	border-radius: 0 0 3px 3px;
	background-color: #ffffff;
}

.chosen-container.chosen-with-drop .chosen-drop {
	display: block;
}

.chosen-container a {
	cursor: pointer;
}

.chosen-container .search-choice .group-name,
.chosen-container .chosen-single .group-name {
	margin-right: 4px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	font-weight: normal;
	color: #999999;
}

.chosen-container .search-choice .group-name:after,
.chosen-container .chosen-single .group-name:after {
	content: ":";
	padding-left: 2px;
	vertical-align: top;
}

/* @end */
/* @group Single Chosen */
.chosen-container-single .chosen-single {
	border-radius: 3px;
	position: relative;
	display: block;
	overflow: hidden;
	padding: 0 15px;
	height: 45px;
	border: 1px solid #dddddd;
	white-space: nowrap;
	line-height: 45px;
}

.chosen-container-single .chosen-single input[type="text"] {
	cursor: pointer;
	opacity: 0;
	position: absolute;
	width: 0;
}

.chosen-container-single .chosen-default {
	color: #999999;
}

.chosen-container-single .chosen-single span {
	display: block;
	overflow: hidden;
	margin-right: 26px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.chosen-container-single .chosen-single-with-deselect span {
	margin-right: 38px;
}

.chosen-container-single .chosen-single div {
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	width: 18px;
	height: 100%;
}

.chosen-container-single .chosen-single div b {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
}

.chosen-container-single .chosen-single div b:after {
	content: "\f107";
	display: inline-block;
	font-family: "FontAwesome";
	color: #aaaaaa;
	-webkit-transition: -webkit-transform 0.2s ease-out;
	transition: -webkit-transform 0.2s ease-out;
	transition: transform 0.2s ease-out;
	transition:
		transform 0.2s ease-out,
		-webkit-transform 0.2s ease-out;
}

.chosen-container-single .chosen-search {
	position: relative;
	z-index: 1010;
	margin: 0;
	padding: 3px 4px;
	white-space: nowrap;
}

.chosen-container-single .chosen-search input[type="text"] {
	width: 100%;
	height: auto;
	margin: 1px 0;
	padding: 12px 10px;
	border: 1px solid #dddddd;
	outline: 0;
	line-height: normal;
	border-radius: 0;
}

.chosen-container-single .chosen-drop {
	margin-top: -1px;
	border-radius: 0 0 4px 4px;
	background-clip: padding-box;
}

.chosen-container-single.chosen-container-single-nosearch .chosen-search {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

/* @end */
/* @group Results */
.chosen-container .chosen-results {
	color: #444;
	position: relative;
	overflow-x: hidden;
	overflow-y: auto;
	margin: 0 4px 4px 0;
	padding: 0 0 0 5px;
	max-height: 240px;
	-webkit-overflow-scrolling: touch;
}

.chosen-container .chosen-results li {
	display: none;
	margin: 0;
	padding: 8px 10px;
	list-style: none;
	line-height: 15px;
	word-wrap: break-word;
	-webkit-touch-callout: none;
}

.chosen-container .chosen-results li.active-result {
	display: list-item;
	cursor: pointer;
}

.chosen-container .chosen-results li.disabled-result {
	display: list-item;
	color: #eeeeee;
	cursor: default;
}

.chosen-container .chosen-results li.highlighted {
	color: #fcc400;
}

.chosen-container .chosen-results li.no-results {
	display: list-item;
	padding: 12px 10px;
	background: #f6f6f6;
	color: #777777;
}

.chosen-container .chosen-results li.group-result {
	display: list-item;
	font-weight: bold;
	cursor: default;
}

.chosen-container .chosen-results li.group-option {
	padding-left: 15px;
}

.chosen-container .chosen-results li em {
	font-style: normal;
	text-decoration: underline;
}

/* @end */
/* @group Multi Chosen */
.chosen-container-multi .chosen-choices {
	border-radius: 3px;
	position: relative;
	overflow: hidden;
	margin: 0;
	padding: 8px 15px;
	width: 100%;
	height: auto;
	border: 1px solid #dddddd;
	background-color: #ffffff;
	cursor: text;
}

.chosen-container-multi .chosen-choices li {
	float: left;
	list-style: none;
}

.chosen-container-multi .chosen-choices li.search-field {
	margin: 0;
	padding: 0;
	white-space: nowrap;
}

.chosen-container-multi .chosen-choices li.search-field input[type="text"] {
	width: 25px;
	height: 25px;
	margin: 1px 0;
	padding: 0;
	color: #999999;
	outline: 0;
}

.chosen-container-multi .chosen-choices li.search-choice {
	border-radius: 3px;
	position: relative;
	margin: 3px 5px 3px 0;
	padding: 3px 20px 3px 5px;
	border: 1px solid #aaaaaa;
	max-width: 100%;
	background-color: #eeeeee;
	line-height: 13px;
	cursor: default;
}

.chosen-container-multi .chosen-choices li.search-choice span {
	word-wrap: break-word;
}

.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
	position: absolute;
	top: 4px;
	right: 3px;
	display: block;
	width: 12px;
	height: 12px;
}

.chosen-container-multi
	.chosen-choices
	li.search-choice
	.search-choice-close:after {
	content: "\f2d7";
	display: inline-block;
	font-family: "ionicons";
}

.chosen-container-multi
	.chosen-choices
	li.search-choice
	.search-choice-close:hover {
	background-position: -42px -10px;
}

.chosen-container-multi .chosen-choices li.search-choice-disabled {
	padding-right: 5px;
	border: 1px solid #ccc;
	background-color: #e5e5e5;
	color: #666666;
}

.chosen-container-multi .chosen-choices li.search-choice-focus {
	background: #d4d4d4;
}

.chosen-container-multi
	.chosen-choices
	li.search-choice-focus
	.search-choice-close {
	background-position: -42px -10px;
}

.chosen-container-multi .chosen-results {
	margin: 0;
	padding: 0;
}

.chosen-container-multi .chosen-drop .result-selected {
	display: list-item;
	color: #ccc;
	cursor: default;
}

/* @end */
/* @group Active  */
.chosen-container-active .chosen-single {
	border: 1px solid #dddddd;
}

.chosen-container-active.chosen-with-drop .chosen-single {
	border: 1px solid #dddddd;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
}

.chosen-container-active.chosen-with-drop .chosen-single div {
	border-left: none;
	background: transparent;
}

.chosen-container-active.chosen-with-drop .chosen-single div b:after {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}

.chosen-container-active .chosen-choices {
	border: 1px solid #dddddd;
}

.chosen-container-active .chosen-choices li.search-field input[type="text"] {
	color: #222 !important;
}

/* @end */
/* @group Disabled Support */
.chosen-disabled {
	opacity: 0.5 !important;
	cursor: default;
}

.chosen-disabled .chosen-single {
	cursor: default;
}

.chosen-disabled .chosen-choices .search-choice .search-choice-close {
	cursor: default;
}

/* @end */
/* @group Right to Left */
.chosen-rtl {
	text-align: right;
}

.chosen-rtl .chosen-single {
	overflow: visible;
	padding: 0 15px;
}

.chosen-rtl .chosen-single span {
	margin-right: 0;
	margin-left: 26px;
	direction: rtl;
}

.chosen-rtl .chosen-single-with-deselect span {
	margin-left: 38px;
}

.chosen-rtl .chosen-single div {
	right: auto;
	left: 3px;
}

.chosen-rtl .chosen-single abbr {
	right: auto;
	left: 26px;
}

.chosen-rtl .chosen-choices li {
	float: right;
}

.chosen-rtl .chosen-choices li.search-field input[type="text"] {
	direction: rtl;
	text-align: right;
}

.chosen-rtl .chosen-choices li.search-choice {
	margin: 3px 5px 3px 0;
	padding: 3px 5px 3px 19px;
}

.chosen-rtl .chosen-choices li.search-choice .search-choice-close {
	right: auto;
	left: 4px;
}

.chosen-rtl.chosen-container-single .chosen-results {
	margin: 0 0 4px 4px;
	padding: 0 4px 0 0;
}

.chosen-rtl .chosen-results li.group-option {
	padding-right: 15px;
	padding-left: 0;
}

.chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div {
	border-right: none;
}

.chosen-rtl .chosen-search input[type="text"] {
	padding: 12px 10px;
	direction: rtl;
}

/**
 * Trumbowyg v2.10.0 - A lightweight WYSIWYG editor
 * Default stylesheet for Trumbowyg editor
 * ------------------------
 * @link http://alex-d.github.io/Trumbowyg
 * @license MIT
 * @author Alexandre Demode (Alex-D)
 *         Twitter : @AlexandreDemode
 *         Website : alex-d.fr
 */
#trumbowyg-icons {
	overflow: hidden;
	visibility: hidden;
	height: 0;
	width: 0;
}

#trumbowyg-icons svg {
	height: 0;
	width: 0;
}

.trumbowyg-box *,
.trumbowyg-box *::before,
.trumbowyg-box *::after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.trumbowyg-box svg {
	width: 17px;
	height: 100%;
	fill: #222;
}

.trumbowyg-box,
.trumbowyg-editor {
	display: block;
	position: relative;
	border: 1px solid #ddd;
	width: 100%;
	min-height: 300px;
	margin: 17px auto;
}

.trumbowyg-box .trumbowyg-editor {
	margin: 0 auto;
}

.trumbowyg-box.trumbowyg-fullscreen {
	background: #fefefe;
	border: none !important;
}

.trumbowyg-editor,
.trumbowyg-textarea {
	position: relative;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 20px;
	min-height: 300px;
	width: 100%;
	border-style: none;
	resize: none;
	outline: none;
	overflow: auto;
}

.trumbowyg-editor.trumbowyg-autogrow-on-enter,
.trumbowyg-textarea.trumbowyg-autogrow-on-enter {
	-webkit-transition: height 300ms ease-out;
	transition: height 300ms ease-out;
}

.trumbowyg-box-blur .trumbowyg-editor *,
.trumbowyg-box-blur .trumbowyg-editor::before {
	color: transparent !important;
	text-shadow: 0 0 7px #333;
}

@media screen and (min-width: 0 \0) {
	.trumbowyg-box-blur .trumbowyg-editor *,
	.trumbowyg-box-blur .trumbowyg-editor::before {
		color: rgba(200, 200, 200, 0.6) !important;
	}
}

@supports (-ms-accelerator: true) {
	.trumbowyg-box-blur .trumbowyg-editor *,
	.trumbowyg-box-blur .trumbowyg-editor::before {
		color: rgba(200, 200, 200, 0.6) !important;
	}
}

.trumbowyg-box-blur .trumbowyg-editor img,
.trumbowyg-box-blur .trumbowyg-editor hr {
	opacity: 0.2;
}

.trumbowyg-textarea {
	position: relative;
	display: block;
	overflow: auto;
	border: none;
	font-size: 14px;
	font-family: "Inconsolata", "Consolas", "Courier", "Courier New", sans-serif;
	line-height: 18px;
}

.trumbowyg-box.trumbowyg-editor-visible .trumbowyg-textarea {
	height: 1px !important;
	width: 25%;
	min-height: 0 !important;
	padding: 0 !important;
	background: none;
	opacity: 0 !important;
}

.trumbowyg-box.trumbowyg-editor-hidden .trumbowyg-textarea {
	display: block;
}

.trumbowyg-box.trumbowyg-editor-hidden .trumbowyg-editor {
	display: none;
}

.trumbowyg-box.trumbowyg-disabled .trumbowyg-textarea {
	opacity: 0.8;
	background: none;
}

.trumbowyg-editor[contenteditable="true"]:empty:not(:focus)::before {
	content: attr(placeholder);
	color: #999;
	pointer-events: none;
}

.trumbowyg-button-pane {
	width: 100%;
	min-height: 36px;
	background: #ecf0f1;
	border-bottom: 1px solid #d7e0e2;
	margin: 0;
	padding: 0 5px;
	position: relative;
	list-style-type: none;
	line-height: 10px;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	z-index: 11;
}

.trumbowyg-button-pane::after {
	content: " ";
	display: block;
	position: absolute;
	top: 36px;
	left: 0;
	right: 0;
	width: 100%;
	height: 1px;
	background: #d7e0e2;
}

.trumbowyg-button-pane .trumbowyg-button-group {
	display: inline-block;
}

.trumbowyg-button-pane
	.trumbowyg-button-group
	.trumbowyg-fullscreen-button
	svg {
	color: transparent;
}

.trumbowyg-button-pane .trumbowyg-button-group::after {
	content: " ";
	display: inline-block;
	width: 1px;
	background: #d7e0e2;
	margin: 0 5px;
	height: 35px;
	vertical-align: top;
}

.trumbowyg-button-pane .trumbowyg-button-group:last-child::after {
	content: none;
}

.trumbowyg-button-pane button {
	display: inline-block;
	position: relative;
	width: 35px;
	height: 35px;
	padding: 1px 6px !important;
	margin-bottom: 1px;
	overflow: hidden;
	border: none;
	cursor: pointer;
	background: none;
	vertical-align: middle;
	-webkit-transition:
		background-color 150ms,
		opacity 150ms;
	transition:
		background-color 150ms,
		opacity 150ms;
}

.trumbowyg-button-pane button.trumbowyg-textual-button {
	width: auto;
	line-height: 35px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.trumbowyg-button-pane.trumbowyg-disable
	button:not(.trumbowyg-not-disable):not(.trumbowyg-active),
.trumbowyg-button-pane button.trumbowyg-disable,
.trumbowyg-disabled
	.trumbowyg-button-pane
	button:not(.trumbowyg-not-disable):not(.trumbowyg-viewHTML-button) {
	opacity: 0.2;
	cursor: default;
}

.trumbowyg-button-pane.trumbowyg-disable .trumbowyg-button-group::before,
.trumbowyg-disabled .trumbowyg-button-pane .trumbowyg-button-group::before {
	background: #e3e9eb;
}

.trumbowyg-button-pane button:not(.trumbowyg-disable):hover,
.trumbowyg-button-pane button:not(.trumbowyg-disable):focus,
.trumbowyg-button-pane button.trumbowyg-active {
	background-color: #fff;
	outline: none;
}

.trumbowyg-button-pane .trumbowyg-open-dropdown::after {
	display: block;
	content: " ";
	position: absolute;
	top: 25px;
	right: 3px;
	height: 0;
	width: 0;
	border: 3px solid transparent;
	border-top-color: #555;
}

.trumbowyg-button-pane .trumbowyg-open-dropdown.trumbowyg-textual-button {
	padding-left: 10px !important;
	padding-right: 18px !important;
}

.trumbowyg-button-pane
	.trumbowyg-open-dropdown.trumbowyg-textual-button::after {
	top: 17px;
	right: 7px;
}

.trumbowyg-button-pane .trumbowyg-right {
	float: right;
}

.trumbowyg-dropdown {
	width: 200px;
	border: 1px solid #ecf0f1;
	padding: 5px 0;
	border-top: none;
	background: #fff;
	margin-left: -1px;
	-webkit-box-shadow: rgba(0, 0, 0, 0.1) 0 2px 3px;
	box-shadow: rgba(0, 0, 0, 0.1) 0 2px 3px;
	z-index: 12;
}

.trumbowyg-dropdown button {
	display: block;
	width: 100%;
	height: 35px;
	line-height: 35px;
	text-decoration: none;
	background: #fff;
	padding: 0 10px;
	color: #333 !important;
	border: none;
	cursor: pointer;
	text-align: left;
	font-size: 15px;
	-webkit-transition: all 150ms;
	transition: all 150ms;
}

.trumbowyg-dropdown button:hover,
.trumbowyg-dropdown button:focus {
	background: #ecf0f1;
}

.trumbowyg-dropdown button svg {
	float: left;
	margin-right: 14px;
}

/* Modal box */
.trumbowyg-modal {
	position: absolute;
	top: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	max-width: 520px;
	width: 100%;
	height: 350px;
	z-index: 12;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.trumbowyg-modal-box {
	position: absolute;
	top: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	max-width: 500px;
	width: calc(100% - 20px);
	padding-bottom: 45px;
	z-index: 1;
	background-color: #fff;
	text-align: center;
	font-size: 14px;
	-webkit-box-shadow: rgba(0, 0, 0, 0.2) 0 2px 3px;
	box-shadow: rgba(0, 0, 0, 0.2) 0 2px 3px;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.trumbowyg-modal-box .trumbowyg-modal-title {
	font-size: 24px;
	font-weight: bold;
	margin: 0 0 20px;
	padding: 15px 0 13px;
	display: block;
	border-bottom: 1px solid #eee;
	color: #333;
	background: #fbfcfc;
}

.trumbowyg-modal-box .trumbowyg-progress {
	width: 100%;
	height: 3px;
	position: absolute;
	top: 58px;
}

.trumbowyg-modal-box .trumbowyg-progress .trumbowyg-progress-bar {
	background: #2bc06a;
	width: 0;
	height: 100%;
	-webkit-transition: width 150ms linear;
	transition: width 150ms linear;
}

.trumbowyg-modal-box label {
	display: block;
	position: relative;
	margin: 15px 12px;
	height: 29px;
	line-height: 29px;
	overflow: hidden;
}

.trumbowyg-modal-box label .trumbowyg-input-infos {
	display: block;
	text-align: left;
	height: 25px;
	line-height: 25px;
	-webkit-transition: all 150ms;
	transition: all 150ms;
}

.trumbowyg-modal-box label .trumbowyg-input-infos span {
	display: block;
	color: #69878f;
	background-color: #fbfcfc;
	border: 1px solid #dedede;
	padding: 0 7px;
	width: 150px;
}

.trumbowyg-modal-box label .trumbowyg-input-infos span.trumbowyg-msg-error {
	color: #e74c3c;
}

.trumbowyg-modal-box label.trumbowyg-input-error input,
.trumbowyg-modal-box label.trumbowyg-input-error textarea {
	border: 1px solid #e74c3c;
}

.trumbowyg-modal-box label.trumbowyg-input-error .trumbowyg-input-infos {
	margin-top: -27px;
}

.trumbowyg-modal-box label input {
	position: absolute;
	top: 0;
	right: 0;
	height: 27px;
	line-height: 27px;
	border: 1px solid #dedede;
	background: #fff;
	font-size: 14px;
	max-width: 330px;
	width: 70%;
	padding: 0 7px;
	-webkit-transition: all 150ms;
	transition: all 150ms;
}

.trumbowyg-modal-box label input:hover,
.trumbowyg-modal-box label input:focus {
	outline: none;
	border: 1px solid #95a5a6;
}

.trumbowyg-modal-box label input:focus {
	background: #fbfcfc;
}

.trumbowyg-modal-box label input[type="checkbox"] {
	left: 5px;
	top: 5px;
	right: auto;
}

.trumbowyg-modal-box
	label
	input[type="checkbox"]
	+ .trumbowyg-input-infos
	span {
	width: auto;
	padding-left: 25px;
}

.trumbowyg-modal-box .error {
	margin-top: 25px;
	display: block;
	color: red;
}

.trumbowyg-modal-box .trumbowyg-modal-button {
	position: absolute;
	bottom: 10px;
	right: 0;
	text-decoration: none;
	color: #fff;
	display: block;
	width: 100px;
	height: 35px;
	line-height: 33px;
	margin: 0 10px;
	background-color: #333;
	border: none;
	cursor: pointer;
	font-family: "Trebuchet MS", Helvetica, Verdana, sans-serif;
	font-size: 16px;
	-webkit-transition: all 150ms;
	transition: all 150ms;
}

.trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-submit {
	right: 110px;
	background: #2bc06a;
}

.trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-submit:hover,
.trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-submit:focus {
	background: #40d47e;
	outline: none;
}

.trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-submit:active {
	background: #25a25a;
}

.trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-reset {
	color: #555;
	background: #e6e6e6;
}

.trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-reset:hover,
.trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-reset:focus {
	background: #fbfbfb;
	outline: none;
}

.trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-reset:active {
	background: #d5d5d5;
}

.trumbowyg-overlay {
	position: absolute;
	background-color: rgba(255, 255, 255, 0.5);
	height: 100%;
	width: 100%;
	left: 0;
	display: none;
	top: 0;
	z-index: 10;
}

/**
 * Fullscreen
 */
body.trumbowyg-body-fullscreen {
	overflow: hidden;
}

.trumbowyg-fullscreen {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	z-index: 99999;
}

.trumbowyg-fullscreen.trumbowyg-box,
.trumbowyg-fullscreen .trumbowyg-editor {
	border: none;
}

.trumbowyg-fullscreen .trumbowyg-editor,
.trumbowyg-fullscreen .trumbowyg-textarea {
	height: calc(100% - 37px) !important;
	overflow: auto;
}

.trumbowyg-fullscreen .trumbowyg-overlay {
	height: 100% !important;
}

.trumbowyg-fullscreen .trumbowyg-button-group .trumbowyg-fullscreen-button svg {
	color: #222;
	fill: transparent;
}

.trumbowyg-editor {
	/*
     * lset for resetCss option
     */
}

.trumbowyg-editor object,
.trumbowyg-editor embed,
.trumbowyg-editor video,
.trumbowyg-editor img {
	max-width: 100%;
}

.trumbowyg-editor video,
.trumbowyg-editor img {
	height: auto;
}

.trumbowyg-editor img {
	cursor: move;
}

.trumbowyg-editor.trumbowyg-reset-css {
	background: #fefefe !important;
	font-family: "Trebuchet MS", Helvetica, Verdana, sans-serif !important;
	font-size: 14px !important;
	line-height: 1.45em !important;
	color: #333;
}

.trumbowyg-editor.trumbowyg-reset-css a {
	color: #15c !important;
	text-decoration: underline !important;
}

.trumbowyg-editor.trumbowyg-reset-css div,
.trumbowyg-editor.trumbowyg-reset-css p,
.trumbowyg-editor.trumbowyg-reset-css ul,
.trumbowyg-editor.trumbowyg-reset-css ol,
.trumbowyg-editor.trumbowyg-reset-css blockquote {
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
	background: none !important;
	margin: 0 !important;
	margin-bottom: 15px !important;
	line-height: 1.4em !important;
	font-family: "Trebuchet MS", Helvetica, Verdana, sans-serif !important;
	font-size: 14px !important;
	border: none;
}

.trumbowyg-editor.trumbowyg-reset-css iframe,
.trumbowyg-editor.trumbowyg-reset-css object,
.trumbowyg-editor.trumbowyg-reset-css hr {
	margin-bottom: 15px !important;
}

.trumbowyg-editor.trumbowyg-reset-css blockquote {
	margin-left: 32px !important;
	font-style: italic !important;
	color: #555;
}

.trumbowyg-editor.trumbowyg-reset-css ul {
	list-style: disc;
}

.trumbowyg-editor.trumbowyg-reset-css ul,
.trumbowyg-editor.trumbowyg-reset-css ol {
	padding-left: 20px !important;
}

.trumbowyg-editor.trumbowyg-reset-css ul ul,
.trumbowyg-editor.trumbowyg-reset-css ol ol,
.trumbowyg-editor.trumbowyg-reset-css ul ol,
.trumbowyg-editor.trumbowyg-reset-css ol ul {
	border: none;
	margin: 2px !important;
	padding: 0 !important;
	padding-left: 24px !important;
}

.trumbowyg-editor.trumbowyg-reset-css hr {
	display: block;
	height: 1px;
	border: none;
	border-top: 1px solid #ccc;
}

.trumbowyg-editor.trumbowyg-reset-css h1,
.trumbowyg-editor.trumbowyg-reset-css h2,
.trumbowyg-editor.trumbowyg-reset-css h3,
.trumbowyg-editor.trumbowyg-reset-css h4 {
	color: #111;
	background: none;
	margin: 0 !important;
	padding: 0 !important;
	font-weight: bold;
}

.trumbowyg-editor.trumbowyg-reset-css h1 {
	font-size: 32px !important;
	line-height: 38px !important;
	margin-bottom: 20px !important;
}

.trumbowyg-editor.trumbowyg-reset-css h2 {
	font-size: 26px !important;
	line-height: 34px !important;
	margin-bottom: 15px !important;
}

.trumbowyg-editor.trumbowyg-reset-css h3 {
	font-size: 22px !important;
	line-height: 28px !important;
	margin-bottom: 7px !important;
}

.trumbowyg-editor.trumbowyg-reset-css h4 {
	font-size: 16px !important;
	line-height: 22px !important;
	margin-bottom: 7px !important;
}

/*
 * Dark theme
 */
.trumbowyg-dark .trumbowyg-textarea {
	background: #111;
	color: #ddd;
}

.trumbowyg-dark .trumbowyg-box {
	border: 1px solid #343434;
}

.trumbowyg-dark .trumbowyg-box.trumbowyg-fullscreen {
	background: #111;
}

.trumbowyg-dark .trumbowyg-box.trumbowyg-box-blur .trumbowyg-editor *,
.trumbowyg-dark .trumbowyg-box.trumbowyg-box-blur .trumbowyg-editor::before {
	text-shadow: 0 0 7px #ccc;
}

@media screen and (min-width: 0 \0) {
	.trumbowyg-dark .trumbowyg-box.trumbowyg-box-blur .trumbowyg-editor *,
	.trumbowyg-dark .trumbowyg-box.trumbowyg-box-blur .trumbowyg-editor::before {
		color: rgba(20, 20, 20, 0.6) !important;
	}
}

@supports (-ms-accelerator: true) {
	.trumbowyg-dark .trumbowyg-box.trumbowyg-box-blur .trumbowyg-editor *,
	.trumbowyg-dark .trumbowyg-box.trumbowyg-box-blur .trumbowyg-editor::before {
		color: rgba(20, 20, 20, 0.6) !important;
	}
}

.trumbowyg-dark .trumbowyg-box svg {
	fill: #ecf0f1;
	color: #ecf0f1;
}

.trumbowyg-dark .trumbowyg-button-pane {
	background-color: #222;
	border-bottom-color: #343434;
}

.trumbowyg-dark .trumbowyg-button-pane::after {
	background: #343434;
}

.trumbowyg-dark
	.trumbowyg-button-pane
	.trumbowyg-button-group:not(:empty)::after {
	background-color: #343434;
}

.trumbowyg-dark
	.trumbowyg-button-pane
	.trumbowyg-button-group:not(:empty)
	.trumbowyg-fullscreen-button
	svg {
	color: transparent;
}

.trumbowyg-dark
	.trumbowyg-button-pane.trumbowyg-disable
	.trumbowyg-button-group::after {
	background-color: #2a2a2a;
}

.trumbowyg-dark .trumbowyg-button-pane button:not(.trumbowyg-disable):hover,
.trumbowyg-dark .trumbowyg-button-pane button:not(.trumbowyg-disable):focus,
.trumbowyg-dark .trumbowyg-button-pane button.trumbowyg-active {
	background-color: #333;
}

.trumbowyg-dark .trumbowyg-button-pane .trumbowyg-open-dropdown::after {
	border-top-color: #fff;
}

.trumbowyg-dark
	.trumbowyg-fullscreen
	.trumbowyg-button-group
	.trumbowyg-fullscreen-button
	svg {
	color: #ecf0f1;
	fill: transparent;
}

.trumbowyg-dark .trumbowyg-dropdown {
	border-color: #222;
	background: #333;
	-webkit-box-shadow: rgba(0, 0, 0, 0.3) 0 2px 3px;
	box-shadow: rgba(0, 0, 0, 0.3) 0 2px 3px;
}

.trumbowyg-dark .trumbowyg-dropdown button {
	background: #333;
	color: #fff !important;
}

.trumbowyg-dark .trumbowyg-dropdown button:hover,
.trumbowyg-dark .trumbowyg-dropdown button:focus {
	background: #222;
}

.trumbowyg-dark .trumbowyg-modal-box {
	background-color: #222;
}

.trumbowyg-dark .trumbowyg-modal-box .trumbowyg-modal-title {
	border-bottom: 1px solid #555;
	color: #fff;
	background: #3c3c3c;
}

.trumbowyg-dark .trumbowyg-modal-box label {
	display: block;
	position: relative;
	margin: 15px 12px;
	height: 27px;
	line-height: 27px;
	overflow: hidden;
}

.trumbowyg-dark .trumbowyg-modal-box label .trumbowyg-input-infos span {
	color: #eee;
	background-color: #2f2f2f;
	border-color: #222;
}

.trumbowyg-dark
	.trumbowyg-modal-box
	label
	.trumbowyg-input-infos
	span.trumbowyg-msg-error {
	color: #e74c3c;
}

.trumbowyg-dark .trumbowyg-modal-box label.trumbowyg-input-error input,
.trumbowyg-dark .trumbowyg-modal-box label.trumbowyg-input-error textarea {
	border-color: #e74c3c;
}

.trumbowyg-dark .trumbowyg-modal-box label input {
	border-color: #222;
	color: #eee;
	background: #333;
}

.trumbowyg-dark .trumbowyg-modal-box label input:hover,
.trumbowyg-dark .trumbowyg-modal-box label input:focus {
	border-color: #626262;
}

.trumbowyg-dark .trumbowyg-modal-box label input:focus {
	background-color: #2f2f2f;
}

.trumbowyg-dark
	.trumbowyg-modal-box
	.trumbowyg-modal-button.trumbowyg-modal-submit {
	background: #1b7943;
}

.trumbowyg-dark
	.trumbowyg-modal-box
	.trumbowyg-modal-button.trumbowyg-modal-submit:hover,
.trumbowyg-dark
	.trumbowyg-modal-box
	.trumbowyg-modal-button.trumbowyg-modal-submit:focus {
	background: #25a25a;
}

.trumbowyg-dark
	.trumbowyg-modal-box
	.trumbowyg-modal-button.trumbowyg-modal-submit:active {
	background: #176437;
}

.trumbowyg-dark
	.trumbowyg-modal-box
	.trumbowyg-modal-button.trumbowyg-modal-reset {
	background: #333;
	color: #ccc;
}

.trumbowyg-dark
	.trumbowyg-modal-box
	.trumbowyg-modal-button.trumbowyg-modal-reset:hover,
.trumbowyg-dark
	.trumbowyg-modal-box
	.trumbowyg-modal-button.trumbowyg-modal-reset:focus {
	background: #444;
}

.trumbowyg-dark
	.trumbowyg-modal-box
	.trumbowyg-modal-button.trumbowyg-modal-reset:active {
	background: #111;
}

.trumbowyg-dark .trumbowyg-overlay {
	background-color: rgba(15, 15, 15, 0.6);
}

/*
 * The MIT License
 * Copyright (c) 2012 Matias Meno <m@tias.me>
 */
@-webkit-keyframes passing-through {
	0% {
		opacity: 0;
		-webkit-transform: translateY(40px);
		transform: translateY(40px);
	}
	30%,
	70% {
		opacity: 1;
		-webkit-transform: translateY(0px);
		transform: translateY(0px);
	}
	100% {
		opacity: 0;
		-webkit-transform: translateY(-40px);
		transform: translateY(-40px);
	}
}

@keyframes passing-through {
	0% {
		opacity: 0;
		-webkit-transform: translateY(40px);
		transform: translateY(40px);
	}
	30%,
	70% {
		opacity: 1;
		-webkit-transform: translateY(0px);
		transform: translateY(0px);
	}
	100% {
		opacity: 0;
		-webkit-transform: translateY(-40px);
		transform: translateY(-40px);
	}
}

@-webkit-keyframes slide-in {
	0% {
		opacity: 0;
		-webkit-transform: translateY(40px);
		transform: translateY(40px);
	}
	30% {
		opacity: 1;
		-webkit-transform: translateY(0px);
		transform: translateY(0px);
	}
}

@keyframes slide-in {
	0% {
		opacity: 0;
		-webkit-transform: translateY(40px);
		transform: translateY(40px);
	}
	30% {
		opacity: 1;
		-webkit-transform: translateY(0px);
		transform: translateY(0px);
	}
}

@-webkit-keyframes pulse {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	10% {
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
	}
	20% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@keyframes pulse {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	10% {
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
	}
	20% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

.dropzone,
.dropzone * {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.dropzone {
	border-radius: 3px;
	min-height: 150px;
	border: 2px dashed #dddddd;
	background: white;
	padding: 20px 20px;
}

.dropzone.dz-clickable {
	cursor: pointer;
}

.dropzone.dz-clickable * {
	cursor: default;
}

.dropzone.dz-clickable .dz-message,
.dropzone.dz-clickable .dz-message * {
	cursor: pointer;
}

.dropzone.dz-started .dz-message {
	display: none;
}

.dropzone.dz-drag-hover {
	border-style: solid;
}

.dropzone.dz-drag-hover .dz-message {
	opacity: 0.5;
}

.dropzone .dz-message {
	font-size: 16px;
	font-size: 1rem;
	text-align: center;
	margin: 2em 0;
}

.dropzone .dz-preview {
	position: relative;
	display: inline-block;
	vertical-align: top;
	margin: 16px;
	min-height: 100px;
}

.dropzone .dz-preview:hover {
	z-index: 1000;
}

.dropzone .dz-preview:hover .dz-details {
	opacity: 1;
}

.dropzone .dz-preview.dz-file-preview .dz-image {
	border-radius: 20px;
	background: #999;
	background: -webkit-gradient(
		linear,
		left top,
		left bottom,
		from(#eee),
		to(#ddd)
	);
	background: linear-gradient(to bottom, #eee, #ddd);
}

.dropzone .dz-preview.dz-file-preview .dz-details {
	opacity: 1;
}

.dropzone .dz-preview.dz-image-preview {
	background: white;
}

.dropzone .dz-preview.dz-image-preview .dz-details {
	-webkit-transition: opacity 0.2s linear;
	transition: opacity 0.2s linear;
}

.dropzone .dz-preview .dz-remove {
	font-size: 14px;
	text-align: center;
	display: block;
	cursor: pointer;
	border: none;
}

.dropzone .dz-preview .dz-remove:hover {
	text-decoration: underline;
}

.dropzone .dz-preview:hover .dz-details {
	opacity: 1;
}

.dropzone .dz-preview .dz-details {
	z-index: 20;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	font-size: 13px;
	min-width: 100%;
	max-width: 100%;
	padding: 2em 1em;
	text-align: center;
	color: rgba(0, 0, 0, 0.9);
	line-height: 150%;
}

.dropzone .dz-preview .dz-details .dz-size {
	margin-bottom: 1em;
	font-size: 16px;
}

.dropzone .dz-preview .dz-details .dz-filename {
	white-space: nowrap;
}

.dropzone .dz-preview .dz-details .dz-filename:hover span {
	border: 1px solid rgba(200, 200, 200, 0.8);
	background-color: rgba(255, 255, 255, 0.8);
}

.dropzone .dz-preview .dz-details .dz-filename:not(:hover) {
	overflow: hidden;
	text-overflow: ellipsis;
}

.dropzone .dz-preview .dz-details .dz-filename:not(:hover) span {
	border: 1px solid transparent;
}

.dropzone .dz-preview .dz-details .dz-filename span,
.dropzone .dz-preview .dz-details .dz-size span {
	background-color: rgba(255, 255, 255, 0.4);
	padding: 0 0.4em;
	border-radius: 3px;
}

.dropzone .dz-preview:hover .dz-image img {
	-webkit-transform: scale(1.05, 1.05);
	transform: scale(1.05, 1.05);
	-webkit-filter: blur(8px);
	filter: blur(8px);
}

.dropzone .dz-preview .dz-image {
	border-radius: 20px;
	overflow: hidden;
	width: 120px;
	height: 120px;
	position: relative;
	display: block;
	z-index: 10;
}

.dropzone .dz-preview .dz-image img {
	display: block;
}

.dropzone .dz-preview.dz-success .dz-success-mark {
	-webkit-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
	animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
}

.dropzone .dz-preview.dz-error .dz-error-mark {
	opacity: 1;
	-webkit-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
	animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
}

.dropzone .dz-preview .dz-success-mark,
.dropzone .dz-preview .dz-error-mark {
	pointer-events: none;
	opacity: 0;
	z-index: 500;
	position: absolute;
	display: block;
	top: 50%;
	left: 50%;
	margin-left: -27px;
	margin-top: -27px;
}

.dropzone .dz-preview .dz-success-mark svg,
.dropzone .dz-preview .dz-error-mark svg {
	display: block;
	width: 54px;
	height: 54px;
}

.dropzone .dz-preview.dz-processing .dz-progress {
	opacity: 1;
	-webkit-transition: all 0.2s linear;
	transition: all 0.2s linear;
}

.dropzone .dz-preview.dz-complete .dz-progress {
	opacity: 0;
	-webkit-transition: opacity 0.4s ease-in;
	transition: opacity 0.4s ease-in;
}

.dropzone .dz-preview:not(.dz-processing) .dz-progress {
	-webkit-animation: pulse 6s ease infinite;
	animation: pulse 6s ease infinite;
}

.dropzone .dz-preview .dz-progress {
	opacity: 1;
	z-index: 1000;
	pointer-events: none;
	position: absolute;
	height: 16px;
	left: 50%;
	top: 50%;
	margin-top: -8px;
	width: 80px;
	margin-left: -40px;
	background: rgba(255, 255, 255, 0.9);
	-webkit-transform: scale(1);
	border-radius: 8px;
	overflow: hidden;
}

.dropzone .dz-preview .dz-progress .dz-upload {
	background: #333;
	background: -webkit-gradient(
		linear,
		left top,
		left bottom,
		from(#666),
		to(#444)
	);
	background: linear-gradient(to bottom, #666, #444);
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 0;
	-webkit-transition: width 300ms ease-in-out;
	transition: width 300ms ease-in-out;
}

.dropzone .dz-preview.dz-error .dz-error-message {
	display: block;
}

.dropzone .dz-preview.dz-error:hover .dz-error-message {
	opacity: 1;
	pointer-events: auto;
}

.dropzone .dz-preview .dz-error-message {
	pointer-events: none;
	z-index: 1000;
	position: absolute;
	display: block;
	display: none;
	opacity: 0;
	-webkit-transition: opacity 0.3s ease;
	transition: opacity 0.3s ease;
	border-radius: 8px;
	font-size: 13px;
	top: 130px;
	left: -10px;
	width: 140px;
	background: #be2626;
	background: -webkit-gradient(
		linear,
		left top,
		left bottom,
		from(#be2626),
		to(#a92222)
	);
	background: linear-gradient(to bottom, #be2626, #a92222);
	padding: 0.5em 1.2em;
	color: white;
}

.dropzone .dz-preview .dz-error-message:after {
	content: "";
	position: absolute;
	top: -6px;
	left: 64px;
	width: 0;
	height: 0;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-bottom: 6px solid #be2626;
}

.rangeslider {
	border-radius: 5px;
	position: relative;
	height: 5px;
	width: 100%;
	margin-bottom: 30px;
	background-color: #dddddd;
}

.rangeslider__handle {
	position: absolute;
	top: -8px;
	display: inline-block;
	width: 20px;
	height: 20px;
	background-color: #fcc400;
	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
	border-radius: 50%;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	cursor: pointer;
	z-index: 3;
	-webkit-transition: background-color 0.2s;
	transition: background-color 0.2s;
}

.rangeslider__fill {
	border-radius: 5px;
	position: absolute;
	top: 0;
	height: 100%;
	background-color: #fcc400;
	z-index: 1;
}

.rangeslider__rulers {
	position: absolute;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 100%;
	z-index: 2;
}

.rangeslider__ruler {
	position: relative;
	padding-top: 15px;
	cursor: pointer;
	-webkit-transform: translateX(50%);
	transform: translateX(50%);
}

.rangeslider__ruler:first-child {
	-webkit-transform: translateX(-20%);
	transform: translateX(-20%);
}

.rangeslider__ruler:last-child {
	-webkit-transform: translateX(20%);
	transform: translateX(20%);
}

.rangeslider__handle-value {
	border-radius: 3px;
	position: relative;
	bottom: 30px;
	right: 2px;
	width: 25px;
	height: 20px;
	background-color: #fcc400;
	color: #ffffff;
	text-align: center;
}

.rangeslider__handle-value:after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	width: 0;
	height: 0;
	border-top: 5px solid #fcc400;
	border-right: 5px solid transparent;
	border-left: 5px solid transparent;
	-webkit-box-shadow: 0 2px 6px 2px rgba(0, 0, 0, 0.05);
	box-shadow: 0 2px 6px 2px rgba(0, 0, 0, 0.05);
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

/*! PhotoSwipe main CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*
	Styles for basic PhotoSwipe functionality (sliding area, open/close transitions)
*/
/* pswp = photoswipe */
.pswp {
	display: none;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	overflow: hidden;
	-ms-touch-action: none;
	touch-action: none;
	z-index: 1500;
	-webkit-text-size-adjust: 100%;
	/* create separate layer, to avoid paint on window.onscroll in webkit/blink */
	-webkit-backface-visibility: hidden;
	outline: none;
}

.pswp * {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.pswp img {
	max-width: none;
}

/* style is added when JS option showHideOpacity is set to true */
.pswp--animate_opacity {
	/* 0.001, because opacity:0 doesn't trigger Paint action, which causes lag at start of transition */
	opacity: 0.001;
	will-change: opacity;
	/* for open/close transition */
	-webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
	transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp--open {
	display: block;
}

.pswp--zoom-allowed .pswp__img {
	/* autoprefixer: off */
	cursor: -webkit-zoom-in;
	cursor: -moz-zoom-in;
	cursor: zoom-in;
}

.pswp--zoomed-in .pswp__img {
	/* autoprefixer: off */
	cursor: -webkit-grab;
	cursor: -moz-grab;
	cursor: grab;
}

.pswp--dragging .pswp__img {
	/* autoprefixer: off */
	cursor: -webkit-grabbing;
	cursor: -moz-grabbing;
	cursor: grabbing;
}

/*
	Background is added as a separate element.
	As animating opacity is much faster than animating rgba() background-color.
*/
.pswp__bg {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: 0;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	will-change: opacity;
}

.pswp__scroll-wrap {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.pswp__container,
.pswp__zoom-wrap {
	-ms-touch-action: none;
	touch-action: none;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}

/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
}

.pswp__zoom-wrap {
	position: absolute;
	width: 100%;
	-webkit-transform-origin: left top;
	transform-origin: left top;
	/* for open/close transition */
	-webkit-transition: -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
	transition: -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
	transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
	transition:
		transform 333ms cubic-bezier(0.4, 0, 0.22, 1),
		-webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp__bg {
	will-change: opacity;
	/* for open/close transition */
	-webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
	transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp--animated-in .pswp__bg,
.pswp--animated-in .pswp__zoom-wrap {
	-webkit-transition: none;
	transition: none;
}

.pswp__container,
.pswp__zoom-wrap {
	-webkit-backface-visibility: hidden;
}

.pswp__item {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	overflow: hidden;
}

.pswp__img {
	position: absolute;
	width: auto;
	height: auto;
	top: 0;
	left: 0;
}

/*
	stretched thumbnail or div placeholder element (see below)
	style is added to avoid flickering in webkit/blink when layers overlap
*/
.pswp__img--placeholder {
	-webkit-backface-visibility: hidden;
}

/*
	div element that matches size of large image
	large image loads on top of it
*/
.pswp__img--placeholder--blank {
	background: #222;
}

.pswp--ie .pswp__img {
	width: 100% !important;
	height: auto !important;
	left: 0;
	top: 0;
}

/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg {
	position: absolute;
	left: 0;
	top: 50%;
	width: 100%;
	text-align: center;
	font-size: 14px;
	line-height: 16px;
	margin-top: -8px;
	color: #ccc;
}

.pswp__error-msg a {
	color: #ccc;
	text-decoration: underline;
}

/*! PhotoSwipe Default UI CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*

	Contents:

	1. Buttons
	2. Share modal and links
	3. Index indicator ("1 of X" counter)
	4. Caption
	5. Loading indicator
	6. Additional styles (root element, top bar, idle state, hidden state, etc.)

*/
/*

	1. Buttons

 */
/* <button> css reset */
.pswp__button {
	width: 44px;
	height: 44px;
	position: relative;
	background: none;
	cursor: pointer;
	overflow: visible;
	-webkit-appearance: none;
	display: block;
	border: 0;
	padding: 0;
	margin: 0;
	float: right;
	opacity: 0.75;
	-webkit-transition: opacity 0.2s;
	transition: opacity 0.2s;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.pswp__button:focus,
.pswp__button:hover {
	opacity: 1;
}

.pswp__button:active {
	outline: none;
	opacity: 0.9;
}

.pswp__button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

/* pswp__ui--over-close class it added when mouse is over element that should close gallery */
.pswp__ui--over-close .pswp__button--close {
	opacity: 1;
}

.pswp__button,
.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
	background: url(../images/default-skin/default-skin.png) 0 0 no-repeat;
	background-size: 264px 88px;
	width: 44px;
	height: 44px;
}

@media (-webkit-min-device-pixel-ratio: 1.1),
	(-webkit-min-device-pixel-ratio: 1.09375),
	(min-resolution: 105dpi),
	(min-resolution: 1.1dppx) {
	/* Serve SVG sprite if browser supports SVG and resolution is more than 105dpi */
	.pswp--svg .pswp__button,
	.pswp--svg .pswp__button--arrow--left:before,
	.pswp--svg .pswp__button--arrow--right:before {
		background-image: url(../images/default-skin/default-skin.svg);
	}
	.pswp--svg .pswp__button--arrow--left,
	.pswp--svg .pswp__button--arrow--right {
		background: none;
	}
}

.pswp__button--close {
	background-position: 0 -44px;
}

.pswp__button--share {
	background-position: -44px -44px;
}

.pswp__button--fs {
	display: none;
}

.pswp--supports-fs .pswp__button--fs {
	display: block;
}

.pswp--fs .pswp__button--fs {
	background-position: -44px 0;
}

.pswp__button--zoom {
	display: none;
	background-position: -88px 0;
}

.pswp--zoom-allowed .pswp__button--zoom {
	display: block;
}

.pswp--zoomed-in .pswp__button--zoom {
	background-position: -132px 0;
}

/* no arrows on touch screens */
.pswp--touch .pswp__button--arrow--left,
.pswp--touch .pswp__button--arrow--right {
	visibility: hidden;
}

/*
	Arrow buttons hit area
	(icon is added to :before pseudo-element)
*/
.pswp__button--arrow--left,
.pswp__button--arrow--right {
	background: none;
	top: 50%;
	margin-top: -50px;
	width: 70px;
	height: 100px;
	position: absolute;
}

.pswp__button--arrow--left {
	left: 0;
}

.pswp__button--arrow--right {
	right: 0;
}

.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
	content: "";
	top: 35px;
	background-color: rgba(0, 0, 0, 0.3);
	height: 30px;
	width: 32px;
	position: absolute;
}

.pswp__button--arrow--left:before {
	left: 6px;
	background-position: -138px -44px;
}

.pswp__button--arrow--right:before {
	right: 6px;
	background-position: -94px -44px;
}

/*

	2. Share modal/popup and links

 */
.pswp__counter,
.pswp__share-modal {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.pswp__share-modal {
	display: block;
	background: rgba(0, 0, 0, 0.5);
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	padding: 10px;
	position: absolute;
	z-index: 1600;
	opacity: 0;
	-webkit-transition: opacity 0.25s ease-out;
	transition: opacity 0.25s ease-out;
	-webkit-backface-visibility: hidden;
	will-change: opacity;
}

.pswp__share-modal--hidden {
	display: none;
}

.pswp__share-tooltip {
	z-index: 1620;
	position: absolute;
	background: #fff;
	top: 56px;
	border-radius: 2px;
	display: block;
	width: auto;
	right: 44px;
	-webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
	-webkit-transform: translateY(6px);
	transform: translateY(6px);
	-webkit-transition: -webkit-transform 0.25s;
	transition: -webkit-transform 0.25s;
	transition: transform 0.25s;
	transition:
		transform 0.25s,
		-webkit-transform 0.25s;
	-webkit-backface-visibility: hidden;
	will-change: transform;
}

.pswp__share-tooltip a {
	display: block;
	padding: 8px 12px;
	color: #000;
	text-decoration: none;
	font-size: 14px;
	line-height: 18px;
}

.pswp__share-tooltip a:hover {
	text-decoration: none;
	color: #000;
}

.pswp__share-tooltip a:first-child {
	/* round corners on the first/last list item */
	border-radius: 2px 2px 0 0;
}

.pswp__share-tooltip a:last-child {
	border-radius: 0 0 2px 2px;
}

.pswp__share-modal--fade-in {
	opacity: 1;
}

.pswp__share-modal--fade-in .pswp__share-tooltip {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

/* increase size of share links on touch devices */
.pswp--touch .pswp__share-tooltip a {
	padding: 16px 12px;
}

a.pswp__share--facebook:before {
	content: "";
	display: block;
	width: 0;
	height: 0;
	position: absolute;
	top: -12px;
	right: 15px;
	border: 6px solid transparent;
	border-bottom-color: #fff;
	-webkit-pointer-events: none;
	-moz-pointer-events: none;
	pointer-events: none;
}

a.pswp__share--facebook:hover {
	background: #3e5c9a;
	color: #fff;
}

a.pswp__share--facebook:hover:before {
	border-bottom-color: #3e5c9a;
}

a.pswp__share--twitter:hover {
	background: #55acee;
	color: #fff;
}

a.pswp__share--pinterest:hover {
	background: #ccc;
	color: #ce272d;
}

a.pswp__share--download:hover {
	background: #ddd;
}

/*

	3. Index indicator ("1 of X" counter)

 */
.pswp__counter {
	position: absolute;
	left: 0;
	top: 0;
	height: 44px;
	font-size: 13px;
	line-height: 44px;
	color: #fff;
	opacity: 0.75;
	padding: 0 10px;
}

/*

	4. Caption

 */
.pswp__caption {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	min-height: 44px;
}

.pswp__caption small {
	font-size: 11px;
	color: #bbb;
}

.pswp__caption__center {
	text-align: left;
	max-width: 420px;
	margin: 0 auto;
	font-size: 13px;
	padding: 10px;
	line-height: 20px;
	color: #ccc;
}

.pswp__caption--empty {
	display: none;
}

/* Fake caption element, used to calculate height of next/prev image */
.pswp__caption--fake {
	visibility: hidden;
}

/*

	5. Loading indicator (preloader)

	You can play with it here - http://codepen.io/dimsemenov/pen/yyBWoR

 */
.pswp__preloader {
	width: 44px;
	height: 44px;
	position: absolute;
	top: 0;
	left: 50%;
	margin-left: -22px;
	opacity: 0;
	-webkit-transition: opacity 0.25s ease-out;
	transition: opacity 0.25s ease-out;
	will-change: opacity;
	direction: ltr;
}

.pswp__preloader__icn {
	width: 20px;
	height: 20px;
	margin: 12px;
}

.pswp__preloader--active {
	opacity: 1;
}

.pswp__preloader--active .pswp__preloader__icn {
	/* We use .gif in browsers that don't support CSS animation */
	background: url(../images/default-skin/preloader.gif) 0 0 no-repeat;
}

.pswp--css_animation .pswp__preloader--active {
	opacity: 1;
}

.pswp--css_animation .pswp__preloader--active .pswp__preloader__icn {
	-webkit-animation: clockwise 500ms linear infinite;
	animation: clockwise 500ms linear infinite;
}

.pswp--css_animation .pswp__preloader--active .pswp__preloader__donut {
	-webkit-animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
	animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
}

.pswp--css_animation .pswp__preloader__icn {
	background: none;
	opacity: 0.75;
	width: 14px;
	height: 14px;
	position: absolute;
	left: 15px;
	top: 15px;
	margin: 0;
}

.pswp--css_animation .pswp__preloader__cut {
	/*
			The idea of animating inner circle is based on Polymer ("material") loading indicator
			 by Keanu Lee https://blog.keanulee.com/2014/10/20/the-tale-of-three-spinners.html
		*/
	position: relative;
	width: 7px;
	height: 14px;
	overflow: hidden;
}

.pswp--css_animation .pswp__preloader__donut {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 14px;
	height: 14px;
	border: 2px solid #fff;
	border-radius: 50%;
	border-left-color: transparent;
	border-bottom-color: transparent;
	position: absolute;
	top: 0;
	left: 0;
	background: none;
	margin: 0;
}

@media screen and (max-width: 1024px) {
	.pswp__preloader {
		position: relative;
		left: auto;
		top: auto;
		margin: 0;
		float: right;
	}
}

@-webkit-keyframes clockwise {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes clockwise {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@-webkit-keyframes donut-rotate {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}
	50% {
		-webkit-transform: rotate(-140deg);
		transform: rotate(-140deg);
	}
	100% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}
}

@keyframes donut-rotate {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}
	50% {
		-webkit-transform: rotate(-140deg);
		transform: rotate(-140deg);
	}
	100% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}
}

/*

	6. Additional styles

 */
/* root element of UI */
.pswp__ui {
	-webkit-font-smoothing: auto;
	visibility: visible;
	opacity: 1;
	z-index: 1550;
}

/* top black bar with buttons and "1 of X" indicator */
.pswp__top-bar {
	position: absolute;
	left: 0;
	top: 0;
	height: 44px;
	width: 100%;
}

.pswp__caption,
.pswp__top-bar,
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
	-webkit-backface-visibility: hidden;
	will-change: opacity;
	-webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
	transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

/* pswp--has_mouse class is added only when two subsequent mousemove events occur */
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
	visibility: visible;
}

.pswp__top-bar,
.pswp__caption {
	background-color: rgba(0, 0, 0, 0.5);
}

/* pswp__ui--fit class is added when main image "fits" between top bar and bottom bar (caption) */
.pswp__ui--fit .pswp__top-bar,
.pswp__ui--fit .pswp__caption {
	background-color: rgba(0, 0, 0, 0.3);
}

/* pswp__ui--idle class is added when mouse isn't moving for several seconds (JS option timeToIdle) */
.pswp__ui--idle .pswp__top-bar {
	opacity: 0;
}

.pswp__ui--idle .pswp__button--arrow--left,
.pswp__ui--idle .pswp__button--arrow--right {
	opacity: 0;
}

/*
	pswp__ui--hidden class is added when controls are hidden
	e.g. when user taps to toggle visibility of controls
*/
.pswp__ui--hidden .pswp__top-bar,
.pswp__ui--hidden .pswp__caption,
.pswp__ui--hidden .pswp__button--arrow--left,
.pswp__ui--hidden .pswp__button--arrow--right {
	/* Force paint & create composition layer for controls. */
	opacity: 0.001;
}

/* pswp__ui--one-slide class is added when there is just one item in gallery */
.pswp__ui--one-slide .pswp__button--arrow--left,
.pswp__ui--one-slide .pswp__button--arrow--right,
.pswp__ui--one-slide .pswp__counter {
	display: none;
}

.pswp__element--disabled {
	display: none !important;
}

.pswp--minimal--dark .pswp__top-bar {
	background: none;
}

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.6.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2018 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;
}

@-webkit-keyframes bounce {
	from,
	20%,
	53%,
	80%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	40%,
	43% {
		-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		-webkit-transform: translate3d(0, -30px, 0);
		transform: translate3d(0, -30px, 0);
	}
	70% {
		-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		-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.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	40%,
	43% {
		-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		-webkit-transform: translate3d(0, -30px, 0);
		transform: translate3d(0, -30px, 0);
	}
	70% {
		-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		-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(0.95, 1.05, 1);
		transform: scale3d(0.95, 1.05, 1);
	}
	75% {
		-webkit-transform: scale3d(1.05, 0.95, 1);
		transform: scale3d(1.05, 0.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(0.95, 1.05, 1);
		transform: scale3d(0.95, 1.05, 1);
	}
	75% {
		-webkit-transform: scale3d(1.05, 0.95, 1);
		transform: scale3d(1.05, 0.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(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(0.9, 0.9, 0.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(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(0.9, 0.9, 0.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: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	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: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes wobble {
	from {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	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: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

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

@-webkit-keyframes jello {
	from,
	11.1%,
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	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.39062deg) skewY(0.39062deg);
		transform: skewX(0.39062deg) skewY(0.39062deg);
	}
	88.8% {
		-webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
		transform: skewX(-0.19531deg) skewY(-0.19531deg);
	}
}

@keyframes jello {
	from,
	11.1%,
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	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.39062deg) skewY(0.39062deg);
		transform: skewX(0.39062deg) skewY(0.39062deg);
	}
	88.8% {
		-webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
		transform: skewX(-0.19531deg) skewY(-0.19531deg);
	}
}

.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.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3);
	}
	20% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		transform: scale3d(1.1, 1.1, 1.1);
	}
	40% {
		-webkit-transform: scale3d(0.9, 0.9, 0.9);
		transform: scale3d(0.9, 0.9, 0.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(0.97, 0.97, 0.97);
		transform: scale3d(0.97, 0.97, 0.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.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3);
	}
	20% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		transform: scale3d(1.1, 1.1, 1.1);
	}
	40% {
		-webkit-transform: scale3d(0.9, 0.9, 0.9);
		transform: scale3d(0.9, 0.9, 0.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(0.97, 0.97, 0.97);
		transform: scale3d(0.97, 0.97, 0.97);
	}
	to {
		opacity: 1;
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}

.bounceIn {
	-webkit-animation-duration: 0.75s;
	animation-duration: 0.75s;
	-webkit-animation-name: bounceIn;
	animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
	from,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	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: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes bounceInDown {
	from,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	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: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

.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.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	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: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes bounceInLeft {
	from,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	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: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

.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.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	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: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes bounceInRight {
	from,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	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: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

.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.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	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.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	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(0.9, 0.9, 0.9);
		transform: scale3d(0.9, 0.9, 0.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(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3);
	}
}

@keyframes bounceOut {
	20% {
		-webkit-transform: scale3d(0.9, 0.9, 0.9);
		transform: scale3d(0.9, 0.9, 0.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(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3);
	}
}

.bounceOut {
	-webkit-animation-duration: 0.75s;
	animation-duration: 0.75s;
	-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: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

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

.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: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

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

.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: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

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

.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: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

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

.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: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

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

.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: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

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

.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: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

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

.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: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

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

.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(0.95, 0.95, 0.95);
		transform: perspective(400px) scale3d(0.95, 0.95, 0.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(0.95, 0.95, 0.95);
		transform: perspective(400px) scale3d(0.95, 0.95, 0.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-duration: 0.75s;
	animation-duration: 0.75s;
	-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-animation-duration: 0.75s;
	animation-duration: 0.75s;
	-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: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		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: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		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: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		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: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		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: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		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: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		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: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		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: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		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: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		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: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		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: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		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: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		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-duration: 2s;
	animation-duration: 2s;
	-webkit-animation-name: hinge;
	animation-name: hinge;
}

@-webkit-keyframes jackInTheBox {
	from {
		opacity: 0;
		-webkit-transform: scale(0.1) rotate(30deg);
		transform: scale(0.1) rotate(30deg);
		-webkit-transform-origin: center bottom;
		transform-origin: center bottom;
	}
	50% {
		-webkit-transform: rotate(-10deg);
		transform: rotate(-10deg);
	}
	70% {
		-webkit-transform: rotate(3deg);
		transform: rotate(3deg);
	}
	to {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@keyframes jackInTheBox {
	from {
		opacity: 0;
		-webkit-transform: scale(0.1) rotate(30deg);
		transform: scale(0.1) rotate(30deg);
		-webkit-transform-origin: center bottom;
		transform-origin: center bottom;
	}
	50% {
		-webkit-transform: rotate(-10deg);
		transform: rotate(-10deg);
	}
	70% {
		-webkit-transform: rotate(3deg);
		transform: rotate(3deg);
	}
	to {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

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

/* 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: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@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: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

.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(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3);
	}
	50% {
		opacity: 1;
	}
}

@keyframes zoomIn {
	from {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3);
	}
	50% {
		opacity: 1;
	}
}

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

@-webkit-keyframes zoomInDown {
	from {
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}

@keyframes zoomInDown {
	from {
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}

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

@-webkit-keyframes zoomInLeft {
	from {
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}

@keyframes zoomInLeft {
	from {
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}

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

@-webkit-keyframes zoomInRight {
	from {
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}

@keyframes zoomInRight {
	from {
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}

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

@-webkit-keyframes zoomInUp {
	from {
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}

@keyframes zoomInUp {
	from {
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}

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

@-webkit-keyframes zoomOut {
	from {
		opacity: 1;
	}
	50% {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3);
	}
	to {
		opacity: 0;
	}
}

@keyframes zoomOut {
	from {
		opacity: 1;
	}
	50% {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3);
	}
	to {
		opacity: 0;
	}
}

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

@-webkit-keyframes zoomOutDown {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	to {
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
		transform: scale3d(0.1, 0.1, 0.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.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}

@keyframes zoomOutDown {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	to {
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
		transform: scale3d(0.1, 0.1, 0.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.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}

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

@-webkit-keyframes zoomOutLeft {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
	}
	to {
		opacity: 0;
		-webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
		transform: scale(0.1) translate3d(-2000px, 0, 0);
		-webkit-transform-origin: left center;
		transform-origin: left center;
	}
}

@keyframes zoomOutLeft {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
	}
	to {
		opacity: 0;
		-webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
		transform: scale(0.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(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
	}
	to {
		opacity: 0;
		-webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
		transform: scale(0.1) translate3d(2000px, 0, 0);
		-webkit-transform-origin: right center;
		transform-origin: right center;
	}
}

@keyframes zoomOutRight {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
	}
	to {
		opacity: 0;
		-webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
		transform: scale(0.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(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	to {
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
		transform: scale3d(0.1, 0.1, 0.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.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}

@keyframes zoomOutUp {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	to {
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
		transform: scale3d(0.1, 0.1, 0.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.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 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;
}

/*--------------------------------------------------------------
17.0 Modules
--------------------------------------------------------------*/
.t-small {
	font-size: 12px;
	font-size: 0.75rem;
}

.t-uppercase {
	text-transform: uppercase;
}

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

.t-underline {
	text-decoration: underline;
}

.c-primary {
	color: #222222;
}

.c-secondary {
	color: #fcc400;
}

.c-white {
	color: #ffffff;
}

.c-boulder {
	color: #777777;
}

.c-dusty-gray {
	color: #999999;
}

.c-dove-gray {
	color: #666666;
}

.c-gray {
	color: #888888;
}

.c-silver-charlice {
	color: #aaaaaa;
}

.c-twitter {
	color: #55acee;
}

.c-facebook {
	color: #3b5998;
}

.c-pinterest {
	color: #cb2027;
}

.c-google-plus {
	color: #dd4b39;
}

.c-linkedin {
	color: #007bb5;
}

.c-instagram {
	color: #e95950;
}

.c-youtube {
	color: #ff0000;
}

.bg-primary {
	background-color: #222222;
}

.bg-secondary {
	background-color: #fcc400;
}

.bg-white {
	background-color: #ffffff;
}

.bg-mirage {
	background-color: rgba(19, 28, 40, 0.7);
}

.bg-wild-sand {
	background-color: #f6f6f6;
}

.hover-effect {
	-webkit-transition: 0.3s -webkit-box-shadow ease-out;
	transition: 0.3s -webkit-box-shadow ease-out;
	transition: 0.3s box-shadow ease-out;
	transition:
		0.3s box-shadow ease-out,
		0.3s -webkit-box-shadow ease-out;
}

.hover-effect:hover {
	-webkit-box-shadow: 0 2px 6px 2px rgba(0, 0, 0, 0.05);
	box-shadow: 0 2px 6px 2px rgba(0, 0, 0, 0.05);
}

.map {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.is-sticky {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
}

.no-b-margin {
	margin-bottom: 0;
}

@media screen and (min-width: 1920px) {
	.d-xxl-flex {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
}

@media screen and (min-width: 992px) {
	.site-header {
		-webkit-box-shadow: 0px 3px 7.92px 0.08px rgba(0, 0, 0, 0.1);
		box-shadow: 0px 3px 7.92px 0.08px rgba(0, 0, 0, 0.1);
	}
}

.site-header--absolute {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
}

.site-header--fluid {
	max-width: 1920px;
	margin: 0 auto;
	padding: 0 15px;
}

@media screen and (min-width: 992px) {
	.site-header--fluid {
		padding: 0 30px;
	}
}

.site-header__container {
	position: relative;
	padding: 10px 0;
}

@media screen and (min-width: 992px) {
	.site-header__container {
		height: 80px;
		padding: 0;
	}
}

.site-header__logo {
	display: inline-block;
}

@media screen and (min-width: 992px) {
	.site-header__logo {
		margin-right: 50px;
	}
}

@media screen and (min-width: 1200px) {
	.site-header__logo {
		margin-right: 100px;
	}
}

@media screen and (min-width: 992px) {
	.top-search-form {
		min-width: 200px;
	}
}

.top-search-form__input {
	display: block;
	width: 100%;
	color: #ffffff;
}

.top-search-form__input::-webkit-input-placeholder {
	color: #ffffff;
}

.top-search-form__input:-ms-input-placeholder {
	color: #ffffff;
}

.top-search-form__input::-ms-input-placeholder {
	color: #ffffff;
}

.top-search-form__input::placeholder {
	color: #ffffff;
}

.main-navigation {
	position: absolute;
	z-index: 100;
	top: 100%;
	left: 0;
	width: 100%;
	display: none;
	padding: 0 10px 20px;
	border-top: 3px solid #fcc400;
	background-color: rgba(255, 255, 255, 0.95);
	-webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
	box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
}

@media screen and (min-width: 992px) {
	.main-navigation {
		position: static;
		display: block !important;
		width: auto;
		padding: 0;
		border-top: 0;
		background-color: transparent;
		-webkit-box-shadow: none;
		box-shadow: none;
	}
	.main-navigation > li {
		display: inline-block;
	}
	.main-navigation > li > a {
		line-height: 60px;
		border-bottom: 0;
	}
}

.main-navigation li {
	position: relative;
}

.main-navigation li ul {
	position: absolute;
	left: 9999px;
	display: none;
	padding-left: 10px;
}

@media screen and (min-width: 992px) {
	.main-navigation li ul {
		width: 13em;
		padding-left: 0;
		border-top: 3px solid #fcc400;
		background-color: rgba(255, 255, 255, 0.95);
		-webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
		box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
	}
}

.main-navigation > li.is-active > ul {
	position: static;
	display: block;
}

@media screen and (min-width: 992px) {
	.main-navigation > li.is-active > ul {
		position: absolute;
		left: 0;
		top: auto;
		z-index: 20;
	}
}

.main-navigation li li.is-active ul {
	position: static;
	display: block;
}

@media screen and (min-width: 992px) {
	.main-navigation li li.is-active ul {
		position: absolute;
		left: 100%;
		top: 0;
		z-index: 20;
	}
}

.main-navigation a {
	display: block;
	padding: 10px 0;
	border-bottom: 1px solid #eeeeee;
	outline: none;
}

@media screen and (min-width: 992px) {
	.main-navigation a {
		padding: 10px 15px;
	}
}

.main-navigation a:not(:only-child) {
	position: relative;
}

.main-navigation a:not(:only-child):after {
	content: "\f107";
	position: absolute;
	right: 2px;
	display: inline-block;
	font-family: "FontAwesome";
}

@media screen and (min-width: 992px) {
	.main-navigation a:not(:only-child):after {
		display: none;
	}
}

.main-navigation a.is-active:not(:only-child):after {
	content: "\f106";
}

@media screen and (min-width: 992px) {
	.main-navigation--white > li > a {
		color: #ffffff;
	}
	.main-navigation--white > li > a:hover {
		color: #fcc400;
	}
}

.nav-mobile {
	position: absolute;
	top: 15px;
	right: 0;
	display: block;
	padding: 10px 25px 0 0;
}

.nav-toggle span,
.nav-toggle span:before,
.nav-toggle span:after {
	border-radius: 10px;
	content: "";
	position: absolute;
	display: block;
	width: 20px;
	height: 2px;
	cursor: pointer;
	-webkit-transition: 0.2s all ease-out;
	transition: 0.2s all ease-out;
}

.nav-toggle--white span,
.nav-toggle--white span:before,
.nav-toggle--white span:after {
	background-color: #ffffff;
}

.nav-toggle--dove-gray span,
.nav-toggle--dove-gray span:before,
.nav-toggle--dove-gray span:after {
	background-color: #666666;
}

.nav-toggle span:before {
	top: -6px;
}

.nav-toggle span:after {
	bottom: -6px;
}

.nav-toggle.is-active span {
	background-color: transparent;
}

.nav-toggle.is-active span:before,
.nav-toggle.is-active span:after {
	top: 0;
}

.nav-toggle.is-active span:before {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.nav-toggle.is-active span:after {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.user-action {
	position: absolute;
	top: 18px;
	right: 40px;
}

@media screen and (min-width: 992px) {
	.user-action {
		position: static;
		padding-left: 10px;
	}
	.user-action > * {
		margin-left: 15px;
	}
}

@media screen and (min-width: 1200px) {
	.user-action {
		padding-left: 20px;
	}
	.user-action > * {
		margin-left: 30px;
	}
}

.sign-in {
	display: inline-block;
}

.page-banner {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.page-banner--layout-1 {
	padding: 120px 0 75px;
	background-image: url("../images/uploads/page-banner-1.jpg");
}

@media screen and (min-width: 992px) {
	.page-banner--layout-1 {
		padding: 180px 0 135px;
	}
}

.page-banner__textcontent {
	margin-bottom: 20px;
}

@media screen and (min-width: 992px) {
	.page-banner__textcontent {
		margin-bottom: 40px;
	}
}

.page-banner__title {
	font-size: 40px;
	font-size: 2.5rem;
	margin-bottom: 10px;
}

.page-banner__subtitle {
	font-size: 16px;
	font-size: 1rem;
	margin-bottom: 0;
}

.page-banner--layout-2 {
	padding: 120px 0;
	background-image: url("../images/uploads/page-banner-2.jpg");
}

@media screen and (min-width: 992px) {
	.page-banner--layout-2 {
		padding: 210px 0;
	}
}

.page-banner--layout-2 .page-banner__container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

@media screen and (min-width: 992px) {
	.page-banner--layout-2 .page-banner__container {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: reverse;
		-ms-flex-direction: row-reverse;
		flex-direction: row-reverse;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
}

@media screen and (min-width: 992px) {
	.page-banner--layout-2 .page-banner__left,
	.page-banner--layout-2 .page-banner__right {
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
		padding-left: 50px;
		padding-right: 50px;
	}
}

.page-banner--layout-2 .page-banner__left {
	margin-bottom: 50px;
}

@media screen and (min-width: 992px) {
	.page-banner--layout-2 .page-banner__left {
		margin-bottom: 0;
	}
}

.page-banner--layout-3 {
	padding: 100px 0;
	background-image: url("../images/uploads/page-banner-3.jpg");
}

@media screen and (min-width: 992px) {
	.page-banner--layout-3 {
		padding: 185px 0;
	}
}

.page-banner--layout-4 {
	padding: 150px 0 140px;
	background-image: url("../images/uploads/page-banner-4.jpg");
}

@media screen and (min-width: 992px) {
	.page-banner--layout-4 {
		padding: 300px 0 280px;
	}
}

@media screen and (min-width: 1200px) {
	.page-banner--layout-4 .main-search {
		max-width: 380px;
		margin-right: auto;
		margin-left: auto;
	}
}

.page-banner--layout-4 .page-banner__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

@media screen and (min-width: 992px) {
	.page-banner--layout-4 .page-banner__wrapper {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}

@media screen and (min-width: 1200px) {
	.page-banner--layout-4 .page-banner__wrapper {
		max-width: 960px;
		margin-right: auto;
		margin-left: auto;
	}
}

@media screen and (min-width: 992px) {
	.page-banner--layout-4 .page-banner__left,
	.page-banner--layout-4 .page-banner__right {
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
	}
}

.page-banner--layout-4 .page-banner__left {
	margin-bottom: 50px;
}

@media screen and (min-width: 992px) {
	.page-banner--layout-4 .page-banner__left {
		margin-bottom: 0;
	}
}

@media screen and (min-width: 1200px) {
	.page-banner--layout-4 .page-banner__left {
		border-right: 1px solid rgba(255, 255, 255, 0.2);
	}
}

.main-search {
	border-radius: 3px;
}

.main-search label {
	font-weight: 600;
}

.main-search__group:not(:last-of-type) {
	margin-bottom: 15px;
}

.main-search--layout-1 {
	display: block;
	max-width: 730px;
	margin: 0 auto 20px;
	padding: 25px;
}

@media screen and (min-width: 992px) {
	.main-search--layout-1 {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: end;
		-ms-flex-align: end;
		align-items: flex-end;
	}
}

@media screen and (min-width: 992px) {
	.main-search--layout-1 .main-search__group--primary {
		-webkit-box-flex: 3;
		-ms-flex: 3;
		flex: 3;
	}
}

@media screen and (min-width: 992px) {
	.main-search--layout-1 .main-search__group--secondary {
		-webkit-box-flex: 2;
		-ms-flex: 2;
		flex: 2;
	}
}

.main-search--layout-1 .main-search__group--tertiary {
	text-align: center;
}

@media screen and (min-width: 992px) {
	.main-search--layout-1 .main-search__group:not(:last-of-type) {
		margin-right: 10px;
		margin-bottom: 0;
	}
}

.main-search--layout-2 {
	padding: 30px;
}

.main-search--layout-2 .main-search__group:not(:last-of-type) {
	margin-bottom: 20px;
}

.location {
	margin-bottom: 10px;
}

.location:not(:last-child) {
	margin-right: 30px;
}

.locations--layout-1 i {
	margin-right: 10px;
}

.locations--layout-2 i {
	font-size: 16px;
	font-size: 1rem;
	border-radius: 50%;
	display: block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	border: 1px solid #ffffff;
	margin: 0 auto 10px;
	-webkit-transition: border 0.3s ease-out;
	transition: border 0.3s ease-out;
}

.locations--layout-2 a:hover i {
	border: 1px solid #fcc400;
}

.locations--layout-3 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-right: auto;
	margin-left: auto;
}

.locations--layout-3 .location {
	border-radius: 3px;
	-ms-flex-preferred-size: 120px;
	flex-basis: 120px;
	margin-right: 0;
	margin-bottom: 0;
}

.locations--layout-3 a {
	display: block;
	padding-top: 30px;
	padding-bottom: 30px;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

@media screen and (min-width: 576px) {
	.locations--layout-3 {
		max-width: 380px;
	}
	.locations--layout-3 .location {
		margin-bottom: 10px;
	}
	.locations--layout-3 .location:not(:nth-child(3n)) {
		margin-right: 10px;
	}
}

.locations--layout-3 img {
	height: 30px;
	margin: 0 auto 20px;
}

.ads {
	background-image: url("../images/uploads/ads-bg.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.ads .ads__container {
	padding: 100px 0;
}

.ads--layout-2 .ads__container {
	padding: 75px 0;
}

.ads__title {
	font-size: 36px;
	font-size: 2.25rem;
	margin-bottom: 10px;
}

.ads__subtitle {
	font-size: 16px;
	font-size: 1rem;
	margin-bottom: 0;
}

.page-section {
	padding-top: 50px;
	padding-bottom: 50px;
}

@media screen and (min-width: 768px) {
	.page-section {
		padding-top: 80px;
		padding-bottom: 80px;
	}
}

.page-section__title {
	font-size: 28px;
	font-size: 1.75rem;
	margin-bottom: 10px;
}

.page-section__subtitle {
	margin-bottom: 10px;
}

.page-content {
	padding: 20px 0 100px;
}

.page-content--no-b-bottom {
	padding-bottom: 0;
}

.page-content--no-t-bottom {
	padding-top: 0;
}

.page-title {
	font-size: 30px;
	font-size: 1.875rem;
	margin-bottom: 10px;
}

.category {
	position: relative;
	border-radius: 12px;
	margin-top: 30px;
	border: 1px solid #eeeeee;
	background-color: #ffffff;
	overflow: hidden;
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.category:hover {
	transform: translateY(-3px);
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}

.category > a {
	display: block;
	padding: 0;
	position: relative;
}

.category__count {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	padding: 0 10px;
	border-radius: 999px;
	background: rgba(11, 17, 25, 0.78);
	color: #ffffff;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.category__image {
	overflow: hidden;
	background: #f7f7f7;
}

.category__title {
	font-size: 15px;
	font-size: 0.9375rem;
	margin-bottom: 0;
	padding: 18px 12px 20px;
	font-weight: 600;
	color: #2d2d2d;
}

.category--layout-1 img {
	height: 170px;
	width: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

.category:hover .category__image img {
	transform: scale(1.06);
}

.category--layout-1 .category__title {
	margin-top: 0;
}

@media screen and (max-width: 575px) {
	.category--layout-1 img {
		height: 130px;
	}
}

.category--layout-2 .category {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.category--layout-2 .category > a {
	padding-top: 45px;
	padding-bottom: 45px;
}

@media screen and (min-width: 768px) {
	.category--layout-2 .category > a {
		padding-top: 75px;
		padding-bottom: 75px;
	}
}

.category--layout-2 .category > a:hover .category__image {
	background-color: #fcc400;
	border: 1px solid transparent;
	-webkit-box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.2);
	box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.2);
}

.category--layout-2 .category__image {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 80px;
	height: 80px;
	margin: 0 auto 20px;
	border: 1px solid #ffffff;
	border-radius: 50%;
	line-height: 80px;
	-webkit-transition: 0.3s all ease-out;
	transition: 0.3s all ease-out;
}

.category--layout-3 .category > a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.category--layout-3 .category__image {
	-ms-flex-preferred-size: 20px;
	flex-basis: 20px;
	max-height: 20px;
	margin-right: 10px;
}

.dream-place {
	position: relative;
	margin-top: 30px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	-webkit-transition: -webkit-box-shadow 0.3s ease-out;
	transition: -webkit-box-shadow 0.3s ease-out;
	transition: box-shadow 0.3s ease-out;
	transition:
		box-shadow 0.3s ease-out,
		-webkit-box-shadow 0.3s ease-out;
}

.dream-place:hover {
	-webkit-box-shadow: 0px 6px 19px 1px rgba(0, 0, 0, 0.4);
	box-shadow: 0px 6px 19px 1px rgba(0, 0, 0, 0.4);
}

.dream-places--layout-1 .dream-place {
	height: 270px;
}

.dream-places--layout-1 .dream-place__inner {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: rgba(0, 0, 0, 0.5);
	-webkit-transition: background-color 0.3s ease-out;
	transition: background-color 0.3s ease-out;
}

.dream-places--layout-1 .dream-place__inner:before {
	content: "";
	position: absolute;
	top: 25px;
	right: 25px;
	bottom: 25px;
	left: 25px;
	border: 1px solid #ffffff;
	opacity: 0;
	-webkit-transition:
		opacity 0.3s ease-out,
		-webkit-transform 0.3s ease-out;
	transition:
		opacity 0.3s ease-out,
		-webkit-transform 0.3s ease-out;
	transition:
		opacity 0.3s ease-out,
		transform 0.3s ease-out;
	transition:
		opacity 0.3s ease-out,
		transform 0.3s ease-out,
		-webkit-transform 0.3s ease-out;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
	z-index: 1;
}

.dream-places--layout-1 .dream-place:hover .dream-place__inner {
	background-color: rgba(0, 0, 0, 0.2);
}

.dream-places--layout-1 .dream-place:hover .dream-place__inner:before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}

@media screen and (min-width: 576px) {
	.dream-places--layout-1 .dream-places__wrapper {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.dream-places--layout-1 .dream-place {
		-webkit-box-flex: 1;
		-ms-flex: 1 0 calc(50% - 30px);
		flex: 1 0 calc(50% - 30px);
		margin-left: 15px;
		margin-right: 15px;
	}
}

@media screen and (min-width: 768px) {
	.dream-places--layout-1 .dream-place {
		-webkit-box-flex: 1;
		-ms-flex: 1 0 calc(33.33% - 30px);
		flex: 1 0 calc(33.33% - 30px);
	}
}

.dream-places--layout-1 .dream-place__title {
	font-size: 20px;
	font-size: 1.25rem;
	margin: auto;
}

@media screen and (min-width: 768px) {
	.dream-places--layout-1 .dream-place__title {
		font-size: 28px;
		font-size: 1.75rem;
	}
}

.dream-places--layout-2 .dream-place {
	position: relative;
	height: 200px;
	overflow: hidden;
}

@media screen and (min-width: 768px) {
	.dream-places--layout-2 .dream-place {
		height: 250px;
	}
}

@media screen and (min-width: 992px) {
	.dream-places--layout-2 .dream-place {
		height: 400px;
	}
}

.dream-places--layout-2 .dream-place:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background-color: #222222;
	opacity: 0.3;
	z-index: 1;
}

.dream-places--layout-2 .dream-place:hover .dream-place__gradient {
	opacity: 0.5;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

.dream-places--layout-2 .dream-place:hover .dream-place__number {
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

.dream-places--layout-2 .dream-place__gradient {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: -webkit-gradient(
		linear,
		left bottom,
		left top,
		from(#e1006a),
		to(#087377)
	);
	background: linear-gradient(0deg, #e1006a 0%, #087377 100%);
	opacity: 0;
	-webkit-transition:
		opacity 0.3s ease-out,
		-webkit-transform 0.3s ease-out;
	transition:
		opacity 0.3s ease-out,
		-webkit-transform 0.3s ease-out;
	transition:
		opacity 0.3s ease-out,
		transform 0.3s ease-out;
	transition:
		opacity 0.3s ease-out,
		transform 0.3s ease-out,
		-webkit-transform 0.3s ease-out;
	-webkit-transform: translateY(100%);
	transform: translateY(100%);
	z-index: 2;
}

.dream-places--layout-2 .dream-place__content {
	position: relative;
	z-index: 10;
	padding: 15px;
}

.dream-places--layout-2 .dream-place__title {
	font-size: 18px;
	font-size: 1.125rem;
	margin-bottom: 5px;
}

@media screen and (min-width: 768px) {
	.dream-places--layout-2 .dream-place__title {
		font-size: 24px;
		font-size: 1.5rem;
	}
}

.dream-places--layout-2 .dream-place__number {
	display: block;
	font-weight: bold;
	opacity: 0;
	-webkit-transition:
		0.3s opacity ease-out,
		0.3s -webkit-transform ease-out;
	transition:
		0.3s opacity ease-out,
		0.3s -webkit-transform ease-out;
	transition:
		0.3s transform ease-out,
		0.3s opacity ease-out;
	transition:
		0.3s transform ease-out,
		0.3s opacity ease-out,
		0.3s -webkit-transform ease-out;
	-webkit-transform: translateY(50px);
	transform: translateY(50px);
}

.listing {
	border-radius: 3px;
	position: relative;
	margin-top: 30px;
}

.listing p + p {
	margin-bottom: 0;
}

.listing__thumbnail {
	position: relative;
	overflow: hidden;
	height: 260px;
	background: #f5f5f5;
}

.listing__thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	-webkit-transition: -webkit-transform 0.5s ease-out;
	transition: -webkit-transform 0.5s ease-out;
	transition: transform 0.5s ease-out;
	transition:
		transform 0.5s ease-out,
		-webkit-transform 0.5s ease-out;
}

.listing__thumbnail:hover img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

.recent-listings-slider {
	padding: 10px 0 20px;
}

.recent-listings-slider .swiper-slide {
	height: auto;
}

.recent-listings-slider .listing {
	margin-top: 0;
	height: 100%;
}

.recent-listings-actions {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
	margin-left: auto;
}

.recent-listings-button-prev,
.recent-listings-button-next {
	position: static;
	width: 40px;
	height: 40px;
	margin-top: 0;
	border: 1px solid #f26b4a;
	border-radius: 50%;
	background-color: #f26b4a;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 12px 18px;
	color: #ffffff;
	box-shadow: 0 10px 20px rgba(242, 107, 74, 0.22);
	cursor: pointer;
	transition: all 0.2s ease;
}

.recent-listings-button-prev:hover,
.recent-listings-button-next:hover {
	opacity: 0.9;
	transform: translateY(-1px);
}

.recent-listings-button-prev {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.recent-listings-button-next {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.recent-listings-button-prev:after,
.recent-listings-button-next:after {
	content: "";
	display: none;
}

.listing__detail {
	padding: 20px;
	border: 1px solid #eeeeee;
}

.listing__title {
	font-size: 20px;
	font-size: 1.25rem;
	margin-bottom: 10px;
}

.listing__category {
	margin-bottom: 10px;
}

.listing__category span:not(:last-child):after {
	font-size: 20px;
	font-size: 1.25rem;
	content: "\00B7";
	display: inline-block;
	padding: 0 5px;
	color: #dddddd;
}

.listing__price {
	font-size: 10px;
	font-size: 0.625rem;
}

.listing__score {
	display: inline-block;
	width: 34px;
	height: 34px;
	border: 1px solid #f15636;
	color: #f15636;
	border-radius: 50%;
	line-height: 34px;
}

.listing-list--layout-3 .listing__detail {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.listing-list--layout-3 .listing__location {
	margin-bottom: 0;
}

.listing-row:first-child th {
	padding: 20px 0.4rem;
}

.listing-row:first-child th:first-child {
	padding-left: 15px;
}

.listing-cell {
	padding: 30px 0;
}

.listing-cell .listing__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.listing-cell .listing__detail {
	padding: 0;
	border: 0;
}

.listing-cell .listing__thumbnail {
	display: none;
	width: 150px;
	margin-right: 20px;
}

@media screen and (min-width: 768px) {
	.listing-cell .listing__thumbnail {
		display: block;
	}
}

.listing-cell p {
	margin-bottom: 15px;
}

.listing-group {
	margin-bottom: 35px;
	padding-bottom: 25px;
	border-bottom: 1px solid #eeeeee;
}

.listing-group:last-of-type {
	margin-bottom: 0;
	border-bottom: 0;
}

.listing-group__title {
	font-size: 20px;
	font-size: 1.25rem;
}

.listing-header .listing-action i {
	font-size: 18px;
	font-size: 1.125rem;
	display: block;
	width: 50px;
	height: 50px;
	margin-bottom: 10px;
	background-color: #eeeeee;
	line-height: 50px;
	border-radius: 50%;
}

.listing-header .listing-action--favorite i {
	color: #f15636;
}

.listing-header .listing-action--report i {
	color: #fcc400;
}

.listing-header .listing-action--share i {
	color: #55acee;
}

.listing-header .listing-action:not(:last-child) {
	margin-right: 20px;
}

.listing-header .listing-actions--secondary {
	margin-top: 30px;
}

.listing-header .listing-actions--secondary li {
	margin-bottom: 10px;
}

.listing-header .listing-actions--secondary li:not(:last-child) {
	margin-right: 10px;
}

@media screen and (min-width: 768px) {
	.listing-header .listing-actions--secondary li {
		margin-bottom: 0;
	}
}

.listing-header__container {
	padding-bottom: 30px;
}

.listing-section-container .listing-header__container {
	padding-bottom: 0;
}

.listing-header__main {
	margin-bottom: 15px;
}

@media screen and (min-width: 992px) {
	.listing-header__main {
		margin-bottom: 0;
	}
}

.listing-header__image {
	margin-right: 15px;
}

.listing-header__content {
	margin-bottom: 15px;
}

@media screen and (min-width: 768px) {
	.listing-header__content {
		margin-bottom: 0;
	}
}

.listing-header__title {
	font-size: 20px;
	font-size: 1.25rem;
	margin-bottom: 5px;
}

@media screen and (min-width: 576px) {
	.listing-header__title {
		font-size: 30px;
		font-size: 1.875rem;
		margin-right: 5px;
		margin-bottom: 0;
	}
}

.listing-header__detail {
	margin-top: 5px;
}

.listing-header__detail li {
	margin-bottom: 5px;
}

@media screen and (min-width: 768px) {
	.listing-header__detail li {
		display: inline-block;
	}
	.listing-header__detail li:not(:last-child):after {
		content: "|";
		display: inline-block;
		color: #dddddd;
		padding: 0 10px;
	}
}

.listing-header__detail .listing__score {
	font-size: 12px;
	font-size: 0.75rem;
	width: 26px;
	height: 26px;
	border-color: #fcc400;
	background-color: #fcc400;
	color: #222222;
	line-height: 26px;
}

.listing-widget {
	margin-bottom: 30px;
	padding: 25px;
}

.listing-widget:last-of-type {
	margin-bottom: 0;
}

.listing-widget .listing-actions {
	margin-top: 20px;
}

.listing-widget .listing-action:not(:last-child):after {
	content: "|";
	display: inline-block;
	color: #dddddd;
	padding: 0 10px;
}

.listing-widget__title {
	font-size: 20px;
	font-size: 1.25rem;
	padding-bottom: 15px;
	border-bottom: 1px solid #eeeeee;
}

.latest-listing:not(:last-child) {
	margin-bottom: 35px;
}

.latest-listing__thumbnail {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	max-width: 60px;
	margin-right: 15px;
}

.latest-listing__name {
	font-size: 16px;
	font-size: 1rem;
	margin-bottom: 2px;
}

.latest-listing__desc {
	margin-bottom: 0;
}

.listing-timetable th {
	width: 25%;
}

.listing-timetable tr,
.listing-timetable th {
	padding: 10px;
}

.listing-main {
	padding: 40px 0 100px;
}

.listing-map-container {
	position: relative;
	min-height: 180px;
	margin-bottom: 25px;
}

.listing-contact {
	position: relative;
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid #eeeeee;
	padding-left: 25px;
}

.listing-contact__icon {
	position: absolute;
	left: 0;
}

.listing-social .social-list {
	margin-top: 10px;
	margin-bottom: 35px;
}

.listing-cta {
	margin-top: 20px;
	margin-bottom: 0;
}

.listing-tab:not(:last-child) {
	margin-right: 15px;
}

@media screen and (min-width: 768px) {
	.listing-tab:not(:last-child) {
		margin-right: 30px;
	}
}

.listing-tab a {
	font-size: 16px;
	font-size: 1rem;
	display: block;
	border-bottom: 2px solid transparent;
	font-weight: 600;
	padding: 15px 0;
	outline: 0;
}

.listing-tab a:hover {
	border-bottom: 2px solid #fcc400;
}

.listing-tab a:focus {
	color: #222222;
}

.listing-tab.is-active a {
	border-bottom: 2px solid #fcc400;
	color: #fcc400;
}

.listing-section,
.listing-header-wrapper {
	padding: 20px;
	margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
	.listing-section,
	.listing-header-wrapper {
		padding: 40px;
	}
}

.listing-section:last-child {
	margin-bottom: 0;
}

.listing-section__header {
	margin-bottom: 30px;
}

.listing-section__title {
	font-size: 24px;
	font-size: 1.5rem;
	margin-bottom: 10px;
}

@media screen and (min-width: 576px) {
	.listing-section__title {
		margin-bottom: 0;
	}
}

.listing-features {
	margin-bottom: 15px;
}

@media screen and (min-width: 576px) {
	.listing-features {
		-webkit-column-count: 3;
		column-count: 3;
	}
}

.listing-features li {
	position: relative;
	margin-bottom: 10px;
	padding-left: 20px;
}

.listing-features li:before {
	content: "\f00c";
	position: absolute;
	left: 0;
	display: inline-block;
	color: #fcc400;
	font-family: "FontAwesome";
}

.listing-ratings {
	margin-bottom: 40px;
}

.listing-rating {
	border-bottom: 0;
}

.listing-rating th,
.listing-rating td {
	padding: 10px 0;
}

.listing-rating td:nth-child(3) {
	display: none;
}

@media screen and (min-width: 768px) {
	.listing-rating td:nth-child(3) {
		display: table-cell;
		width: 50%;
	}
}

.listing-rating td:last-child {
	text-align: right;
}

.listing-review {
	padding-top: 35px;
	padding-bottom: 20px;
	border-top: 1px dotted #dddddd;
}

.listing-review__avatar {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	margin-right: 15px;
	border-radius: 50%;
	background: #e9ecef;
	color: #444;
	font-size: 24px;
	font-weight: 700;
	border: 1px solid #d9d9d9;
	flex-shrink: 0;
}

.listing-review__content {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.listing-review__header {
	margin-bottom: 10px;
}

.listing-pagination {
	margin-top: 15px;
}

.listing-pagination .page-navigation {
	margin-bottom: 10px;
}

@media screen and (min-width: 576px) {
	.listing-pagination .page-navigation {
		margin-bottom: 0;
	}
}

@media screen and (min-width: 768px) {
	.listing-menu {
		-webkit-column-count: 2;
		column-count: 2;
		-webkit-column-gap: 30px;
		column-gap: 30px;
	}
}

.listing-menu__item {
	margin-bottom: 20px;
	padding-bottom: 25px;
	border-bottom: 1px dotted #aaaaaa;
}

.listing-menu__item-name {
	font-size: 18px;
	font-size: 1.125rem;
	margin-bottom: 5px;
}

.listing-gallery-top {
	width: 100%;
	margin-bottom: 10px;
}

.listing-gallery-thumb {
	width: 100%;
}

.listing-gallery-thumb .swiper-slide {
	opacity: 0.4;
	cursor: pointer;
}

.listing-gallery-thumb .is-selected {
	opacity: 1;
}

.listing-button {
	font-size: 16px;
	font-size: 1rem;
	position: absolute;
	top: 50%;
	display: inline-block;
	width: 25px;
	height: 25px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.4);
	text-align: center;
	line-height: 25px;
	cursor: pointer;
	-webkit-transition: background-color 0.3s ease-out;
	transition: background-color 0.3s ease-out;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 1000;
}

@media screen and (min-width: 768px) {
	.listing-button {
		font-size: 20px;
		font-size: 1.25rem;
		width: 35px;
		height: 35px;
		line-height: 35px;
	}
}

.listing-button:hover {
	background-color: #fcc400;
}

.listing-button.swiper-button-disabled {
	opacity: 0;
	visibility: hidden;
}

.listing-button-prev {
	left: 10px;
}

.listing-button-next {
	right: 10px;
}

.listing-member__image {
	max-width: 120px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	margin-right: 20px;
	border-radius: 50%;
}

.listing-member__name {
	font-size: 20px;
	font-size: 1.25rem;
	margin-bottom: 2px;
}

.listing-member__position {
	margin-bottom: 15px;
}

.listing-timer__desc {
	margin-bottom: 10px;
}

.listing-timer__wrapper:not(:last-child) {
	margin-right: 10px;
}

.listing-timer__time {
	font-size: 25px;
	font-size: 1.5625rem;
	font-weight: 700;
}

.listing-nav--b-margin {
	margin-bottom: 30px;
}

.listing-header-bg {
	height: 280px;
	background-image: url("../images/uploads/listing-bg.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.listing-search-container {
	border-radius: 3px;
}

@media screen and (min-width: 992px) {
	.listing-search-container {
		margin-top: -110px;
	}
}

@media screen and (min-width: 992px) {
	.listing-search-container--on-map {
		margin-top: -70px;
	}
}

.listing-search {
	padding: 15px 20px;
	-webkit-box-shadow: 0 1px 2.97px 0.03px rgba(0, 0, 0, 0.15);
	box-shadow: 0 1px 2.97px 0.03px rgba(0, 0, 0, 0.15);
}

.listing-search button {
	padding-right: 20px;
	padding-left: 20px;
	font-weight: 400;
}

.listing-sort li:not(:last-child) {
	margin-right: 10px;
}

.listing-sort a {
	color: #999999;
}

.listing-sort a:hover {
	color: #fcc400;
}

.listing-sort a.is-active {
	color: #222222;
}

.listing-filter {
	margin-right: 15px;
	margin-bottom: 15px;
}

@media screen and (min-width: 992px) {
	.listing-filter {
		margin-bottom: 0;
	}
}

.listing-filter a {
	display: block;
	padding: 10px 20px;
	color: #222222;
	outline: none;
}

.listing-filter li {
	border: 1px solid #eeeeee;
	background-color: #f6f6f6;
}

.listing-filter li.is-active {
	background-color: #fcc400;
	border-color: transparent;
}

.listing-filter i {
	pointer-events: none;
}

.listing-filter--group li:not(:first-child) {
	border-left: 0;
}

.listing-filter--group li:first-child {
	border-top-left-radius: 20px;
	border-bottom-left-radius: 20px;
}

.listing-filter--group li:last-child {
	border-top-right-radius: 20px;
	border-bottom-right-radius: 20px;
}

.listing-filter--list li {
	margin-bottom: 5px;
	border-radius: 20px;
}

@media screen and (min-width: 576px) {
	.listing-filter--list li {
		margin-bottom: 0;
	}
}

.listing-filter--list li:not(:last-child) {
	margin-right: 15px;
}

.listing-keyword {
	font-size: 20px;
	font-size: 1.25rem;
	padding-top: 25px;
	padding-bottom: 25px;
}

.listing-keyword .keyword {
	font-size: 36px;
	font-size: 2.25rem;
}

@media screen and (min-width: 992px) {
	.listing-keyword {
		padding-top: 0;
		color: #ffffff;
	}
}

.keyword {
	font-size: 16px;
	font-size: 1rem;
}

.listing-keyword--on-map {
	background-color: #ffffff;
}

@media screen and (min-width: 992px) {
	.listing-keyword--on-map {
		padding: 10px 20px;
		border: 1px solid #eeeeee;
		color: #222222;
	}
}

.listing-expand {
	display: inline-block;
	padding: 10px 20px;
	margin-bottom: 15px;
}

@media screen and (min-width: 992px) {
	.listing-expand {
		margin-bottom: 0;
	}
}

.listing-expand i {
	-webkit-transition: -webkit-transform 0.3s ease-out;
	transition: -webkit-transform 0.3s ease-out;
	transition: transform 0.3s ease-out;
	transition:
		transform 0.3s ease-out,
		-webkit-transform 0.3s ease-out;
}

.listing-expand.is-active i {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}

.listing-more-filter {
	height: 0;
	margin-bottom: 30px;
	overflow: hidden;
	-webkit-transition: height 0.3s ease-out;
	transition: height 0.3s ease-out;
}

@media screen and (min-width: 576px) {
	.listing-more-filter ul {
		-webkit-column-count: 2;
		column-count: 2;
	}
}

@media screen and (min-width: 992px) {
	.listing-more-filter ul {
		-webkit-column-count: 4;
		column-count: 4;
	}
}

.listing-more-filter__inner {
	padding: 15px;
}

@media screen and (min-width: 768px) {
	.listing-more-filter__inner {
		padding: 30px 50px 15px;
	}
}

.listing-header-map-container {
	position: relative;
	min-height: 430px;
}

.js-map-container.is-fullscreen {
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	z-index: 1000;
}

.listing-box {
	position: relative;
}

.listing-box:after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-top: 15px solid #ffffff;
	border-left: 15px solid transparent;
	border-right: 15px solid transparent;
}

.listing-box__image {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	max-width: 65px;
	margin-right: 15px;
}

.listing-box__content {
	-webkit-box-flex: 1;
	-ms-flex: 1 0 150px;
	flex: 1 0 150px;
}

.listing-box__title {
	font-size: 18px;
	font-size: 1.125rem;
	margin-bottom: 5px;
}

.listing-box__address {
	display: inline-block;
	max-width: 190px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.listing-column {
	position: relative;
}

@media screen and (min-width: 1200px) {
	.listing-column--xl-50 {
		width: 50%;
	}
}

.listing-column--content {
	padding: 30px;
}

.listing-column--map {
	min-height: 500px;
}

@media screen and (min-width: 1200px) {
	.listing-column--map {
		position: -webkit-sticky;
		position: sticky;
		top: 0;
		height: 100vh;
	}
}

@media screen and (min-width: 768px) {
	.grid-view__item {
		width: 48%;
	}
}

.list-view {
	margin-top: 30px;
}

@media screen and (min-width: 576px) {
	.list-view__item .listing {
		margin-top: 0;
		padding: 15px;
		border-bottom: 1px solid #eeeeee;
		-webkit-transition: background-color 0.3s ease-out;
		transition: background-color 0.3s ease-out;
	}
	.list-view__item .listing:hover {
		background-color: #f6f6f6;
	}
}

@media screen and (min-width: 768px) {
	.list-view__item .listing {
		padding: 30px;
	}
}

@media screen and (min-width: 576px) {
	.list-view__item .listing img {
		width: 100%;
		height: 180px;
		-o-object-fit: cover;
		object-fit: cover;
	}
}

@media screen and (min-width: 576px) {
	.list-view__item .listing__thumbnail {
		position: relative;
		width: 40%;
		margin-right: 15px;
	}
}

@media screen and (min-width: 576px) {
	.list-view__item .listing__detail {
		width: 60%;
		border: 0;
		padding: 0;
	}
}

.listing-column .listing-filter-container {
	margin-top: 20px;
}

.listing-column .listing-filter--group {
	margin-bottom: 15px;
}

.listing-column .listing-filter--list > * {
	margin-bottom: 15px;
}

.listing-filter-label {
	display: block;
	margin-bottom: 15px;
}

.listing-filter--category {
	margin-right: 0;
}

.listing-filter--category li {
	border-radius: 3px;
	position: relative;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 120px;
	flex: 0 0 120px;
	height: 50px;
	margin-bottom: 5px;
	background: transparent;
}

@media screen and (min-width: 992px) {
	.listing-filter--category li {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 170px;
		flex: 0 0 170px;
	}
}

.listing-filter--category li:not(:last-child) {
	margin-right: 10px;
}

.listing-filter--category li.is-active .listing-filter__content {
	background-color: rgba(252, 196, 0, 0.5);
}

.listing-filter--category a {
	padding: 0;
}

.listing-filter__bg {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	z-index: 1;
}

.listing-filter__bg--coffee {
	background-image: url("../images/uploads/coffee.jpg");
}

.listing-filter__bg--food {
	background-image: url("../images/uploads/food.jpg");
}

.listing-filter__bg--cake {
	background-image: url("../images/uploads/cake.jpg");
}

.listing-filter__bg--fruit {
	background-image: url("../images/uploads/fruit.jpg");
}

.listing-filter__content {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.3);
	z-index: 2;
}

.label {
	border-radius: 3px;
	font-size: 10px;
	font-size: 0.625rem;
	position: absolute;
	top: 12px;
	left: 12px;
	display: inline-block;
	padding: 2px 8px;
	color: #222222;
	text-align: center;
}

.label--primary {
	background-color: #fcc400;
}

.label--secondary {
	background-color: #39b54a;
	color: #ffffff;
}

.label--tertiary {
	background-color: #f15636;
	color: #ffffff;
}

.favorite {
	position: absolute;
	top: 12px;
	right: 12px;
	cursor: pointer;
}

.load-more {
	margin-top: 40px;
}

.instruction-container {
	margin-top: 30px;
}

.instruction--layout-1 .instruction-container .instruction__step:before {
	content: "";
	display: block;
	position: absolute;
	bottom: 15%;
	left: 50%;
	width: 80px;
	height: 20px;
	background-color: rgba(252, 196, 0, 0.5);
	border-radius: 15px;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	z-index: -1;
}

.instruction--layout-1
	.instruction-container:first-of-type
	.instruction__step:before {
	background-color: rgba(252, 196, 0, 0.2);
}

.instruction--layout-1
	.instruction-container:last-of-type
	.instruction__step:before {
	background-color: rgba(252, 196, 0, 0.7);
}

.instruction__step {
	font-size: 48px;
	font-size: 3rem;
	position: relative;
	display: inline-block;
	font-weight: 600;
	z-index: 2;
}

.instruction__title {
	font-size: 20px;
	font-size: 1.25rem;
}

.instruction__detail {
	max-width: 260px;
	margin: 0 auto;
}

.instruction__image {
	margin-bottom: 25px;
}

.instruction__image img {
	height: 60px;
	margin-right: auto;
	margin-left: auto;
}

.instruction--layout-2 {
	padding-top: 0;
}

@media screen and (min-width: 992px) {
	.instruction--layout-2 .instructions {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
	.instruction--layout-2 .instruction-container {
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
	}
	.instruction--layout-2 .instruction-container:nth-child(odd) {
		background-color: #e5e5e5;
	}
	.instruction--layout-2 .instruction-container:nth-child(even) {
		background-color: #f6f6f6;
	}
	.instruction--layout-2 .instruction {
		position: relative;
		padding-top: 30px;
		padding-bottom: 30px;
	}
	.instruction--layout-2
		.instruction-container:not(:last-child)
		.instruction:after {
		content: "";
		position: absolute;
		top: 50%;
		left: 100%;
		width: 0;
		height: 0;
		display: block;
		margin-top: -123px;
		border-top: 123px solid transparent;
		border-bottom: 123px solid transparent;
		border-left: 30px solid #e5e5e5;
		z-index: 2;
	}
	.instruction--layout-2
		.instruction-container:nth-child(2)
		.instruction:after {
		border-left-color: #f6f6f6;
	}
}

@media screen and (min-width: 1200px) {
	.instruction--layout-2
		.instruction-container:not(:last-child)
		.instruction:after {
		border-left-width: 45px;
	}
}

.post {
	position: relative;
	margin-top: 30px;
}

.post-image {
	margin-bottom: 40px;
}

.post-thumbnail {
	position: relative;
	overflow: hidden;
}

.post-thumbnail img {
	-webkit-transition: 0.5s -webkit-transform ease-out;
	transition: 0.5s -webkit-transform ease-out;
	transition: 0.5s transform ease-out;
	transition:
		0.5s transform ease-out,
		0.5s -webkit-transform ease-out;
}

.post-thumbnail:hover img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

.entry-header {
	margin-bottom: 45px;
}

.entry-title {
	font-size: 30px;
	font-size: 1.875rem;
	margin-bottom: 15px;
}

.entry-content {
	margin-bottom: 70px;
}

.entry-meta {
	margin-bottom: 40px;
	padding-bottom: 25px;
	border-bottom: 1px solid #dddddd;
}

@media screen and (min-width: 768px) {
	.entry-meta {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		padding-bottom: 40px;
	}
}

.entry-meta > * {
	margin-bottom: 15px;
}

@media screen and (min-width: 768px) {
	.entry-meta > * {
		margin-bottom: 0;
	}
}

.entry-tags a {
	border-radius: 3px;
	display: inline-block;
	margin-bottom: 5px;
	padding: 5px 15px;
	border: 1px solid #dddddd;
}

.entry-tags a:hover {
	border-color: #fcc400;
}

.entry-tags a:not(:last-child) {
	margin-right: 5px;
}

.social-list li {
	font-size: 20px;
	font-size: 1.25rem;
}

.social-list li:not(:last-child) {
	margin-right: 15px;
}

.social-list a {
	color: #666666;
}

.social-list a:hover {
	color: #fcc400;
}

.post.sticky:before {
	font-size: 10px;
	font-size: 0.625rem;
	content: "Sticky";
	position: absolute;
	top: 10px;
	left: 10px;
	display: inline-block;
	background-color: #fcc400;
	padding: 2px 10px;
	border-radius: 20px;
	font-weight: 600;
	text-transform: uppercase;
}

.post-title {
	font-size: 20px;
	font-size: 1.25rem;
	margin-bottom: 10px;
}

.post-meta {
	margin-bottom: 0;
}

.post-meta span:not(:last-child):after {
	content: "//";
	display: inline-block;
	padding: 0 5px;
	color: #999999;
}

.news--layout-1 .post-thumbnail,
.news--layout-3 .post-thumbnail {
	margin-bottom: 20px;
}

.news--layout-2 .post-content,
.news--layout-4 .post-content {
	padding: 20px;
}

@media screen and (min-width: 768px) {
	.news--layout-2 .post-content,
	.news--layout-4 .post-content {
		padding: 25px 30px 30px;
	}
}

.news--layout-2 .post-meta,
.news--layout-4 .post-meta {
	padding-top: 20px;
	border-top: 1px solid #dddddd;
}

@media screen and (min-width: 768px) {
	.news--layout-2 .post-meta,
	.news--layout-4 .post-meta {
		padding-top: 25px;
	}
}

.breadcrumbs-container {
	margin-bottom: 40px;
}

.breadcrumbs__item:not(:last-child):after {
	content: "/";
	display: inline-block;
	padding: 0 5px;
}

.error-404 {
	padding: 100px 0;
}

.error-404__subtitle {
	font-size: 30px;
	font-size: 1.875rem;
	margin-bottom: 40px;
}

.pricing-table {
	border-radius: 3px;
	position: relative;
	margin-top: 30px;
	padding: 30px;
	border: 1px solid #eeeeee;
	overflow: hidden;
}

@media screen and (min-width: 992px) {
	.pricing-table {
		padding: 30px 50px 50px;
	}
}

.pricing-table--featured {
	-webkit-box-shadow: 0px 5px 11.64px 0.36px rgba(0, 0, 0, 0.13);
	box-shadow: 0px 5px 11.64px 0.36px rgba(0, 0, 0, 0.13);
}

.pricing-table__header {
	margin-bottom: 45px;
	padding-bottom: 20px;
	border-bottom: 1px solid #eeeeee;
}

.pricing-table__name {
	font-size: 22px;
	font-size: 1.375rem;
	margin-bottom: 15px;
}

.pricing-table__price {
	font-size: 40px;
	font-size: 2.5rem;
	margin-bottom: 0;
}

.pricing-table__price sup {
	font-size: 60%;
}

.pricing-table__body {
	padding-bottom: 30px;
}

.pricing-table__feature {
	position: relative;
	margin-bottom: 15px;
	padding-left: 30px;
}

.pricing-table__feature:before {
	content: "\f00c";
	position: absolute;
	display: inline-block;
	left: 0;
	color: #fcc400;
	font-family: "FontAwesome";
	font-weight: 400;
}

.pricing-table__feature--not-supported {
	color: #888888;
}

.pricing-table__feature--not-supported:before {
	content: "\f00d";
	color: #888888;
}

.corner-ribbon {
	position: absolute;
	top: 15px;
	right: -30px;
	left: auto;
	display: block;
	width: 120px;
	line-height: 30px;
	background-color: #fcc400;
	font-weight: 600;
	text-align: center;
	letter-spacing: 1px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.settings__header {
	font-size: 26px;
	font-size: 1.625rem;
	margin-bottom: 40px;
	font-weight: 400;
}

.setting-group {
	margin-bottom: 30px;
	padding-bottom: 10px;
	border-bottom: 1px solid #dddddd;
}

.setting-group:last-child {
	border-bottom: 0;
}

.setting-group__title {
	font-size: 14px;
	font-size: 0.875rem;
	margin-bottom: 20px;
}

.setting {
	font-size: 16px;
	font-size: 1rem;
	position: relative;
	margin-bottom: 10px;
	padding-left: 25px;
}

.setting--current .setting__icon,
.setting--current .setting__link,
.setting:hover .setting__icon,
.setting:hover .setting__link {
	color: #fcc400;
}

.setting__link {
	display: block;
}

.setting__icon {
	position: absolute;
	left: 0;
	-webkit-transition: color 0.3s ease-out;
	transition: color 0.3s ease-out;
}

@media screen and (min-width: 768px) {
	.testimonial--layout-1 .testimonials,
	.testimonial--layout-2 .testimonials {
		padding-left: 80px;
		background-image: url("../images/quote.png");
		background-repeat: no-repeat;
		background-position: left 35%;
	}
}

.testimonial--layout-2 .page-section__title {
	text-align: center;
}

@media screen and (min-width: 768px) {
	.testimonial--layout-2 .page-section__title {
		text-align: left;
	}
}

.testimonial--layout-3 {
	padding-top: 0;
}

.testimonial--layout-3 .testimonials {
	background-image: url("../images/quote.png");
	background-repeat: no-repeat;
	background-position: center 30%;
}

.testimonial-content {
	font-size: 16px;
	font-size: 1rem;
	max-width: 650px;
	margin-bottom: 30px;
	padding-top: 15px;
}

.testimonial--layout-3 .testimonial-content {
	margin-right: auto;
	margin-left: auto;
}

@media screen and (min-width: 768px) {
	.testimonial-footer {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
}

@media screen and (min-width: 768px) {
	.testimonial--layout-3 .testimonial-footer {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}

.testimonial-avatar {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	max-width: 80px;
	margin-right: 15px;
	margin-bottom: 10px;
	border-radius: 50%;
}

@media screen and (min-width: 768px) {
	.testimonial-avatar {
		margin-bottom: 0;
	}
}

.testimonial-client-name {
	font-size: 16px;
	font-size: 1rem;
}

.testimonial-client-name:after {
	content: "//";
	display: inline-block;
	padding: 0 5px;
}

.testimonial-container {
	position: relative;
}

.testimonial-button-container {
	position: absolute;
	z-index: 1;
	right: 0;
	bottom: 0;
}

@media screen and (min-width: 768px) {
	.testimonial--layout-3 .testimonial-button-container {
		right: 0;
		bottom: 50%;
		left: 0;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
	}
}

.testimonial-button {
	display: inline-block;
	width: 35px;
	height: 35px;
	border: 1px solid #aaaaaa;
	color: #aaaaaa;
	border-radius: 50%;
	text-align: center;
	line-height: 35px;
	cursor: pointer;
}

.testimonial-button:not(:last-child) {
	margin-right: 5px;
}

.testimonial-button.swiper-button-disabled {
	border-color: #eeeeee;
	color: #eeeeee;
}

.testimonial-video {
	position: relative;
	margin-bottom: 20px;
	border-radius: 50%;
}

@media screen and (min-width: 768px) {
	.testimonial-video {
		margin-bottom: 0;
	}
}

.testimonial-video a {
	font-size: 50px;
	font-size: 3.125rem;
	position: absolute;
	display: block;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%) scale(1);
	transform: translate(-50%, -50%) scale(1);
	color: #ffffff;
	-webkit-transition-property:
		color,
		-webkit-transform;
	transition-property:
		color,
		-webkit-transform;
	transition-property: transform, color;
	transition-property:
		transform,
		color,
		-webkit-transform;
	-webkit-transition-duration: 0.2s;
	transition-duration: 0.2s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}

.testimonial-video a:hover {
	-webkit-transform: translate(-50%, -50%) scale(1.1);
	transform: translate(-50%, -50%) scale(1.1);
	color: #fcc400;
}

.testimonial-video img {
	margin-right: auto;
	margin-left: auto;
}

.contact-container .page-section__title {
	margin-bottom: 15px;
}

.contact-map-container {
	position: relative;
	min-height: 400px;
	margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
	.contact-map-container {
		margin-bottom: 0;
	}
}

.contact {
	margin-top: 40px;
}

.contact-list {
	margin-bottom: 75px;
}

.contact-icon {
	font-size: 24px;
	font-size: 1.5rem;
	width: 70px;
	height: 70px;
	margin: 0 auto 30px;
	color: #ffffff;
	border-radius: 50%;
	line-height: 70px;
	text-align: center;
}

.contact-type {
	font-size: 16px;
	font-size: 1rem;
	margin-bottom: 10px;
}

.contact-type ~ a {
	display: block;
}

.coming-soon__header {
	padding: 65px 0;
}

.coming-soon__header img {
	margin-right: auto;
	margin-left: auto;
}

.coming-soon__main {
	padding-top: 80px;
	padding-bottom: 80px;
}

@media screen and (min-width: 768px) {
	.coming-soon__main {
		padding-top: 125px;
		padding-bottom: 125px;
	}
}

.coming-soon__title {
	font-size: 30px;
	font-size: 1.875rem;
	margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
	.coming-soon__title {
		margin-bottom: 60px;
	}
}

.coming-soon__wrapper:not(:last-child) {
	margin-right: 5px;
}

@media screen and (min-width: 768px) {
	.coming-soon__wrapper:not(:last-child) {
		margin-right: 20px;
	}
}

@media screen and (min-width: 992px) {
	.coming-soon__wrapper:not(:last-child) {
		margin-right: 35px;
	}
}

.coming-soon__time {
	font-size: 20px;
	font-size: 1.25rem;
	border-radius: 3px;
	display: block;
	margin-bottom: 15px;
	width: 60px;
	height: 70px;
	border-bottom: 3px solid #888888;
	background-color: rgba(255, 255, 255, 0.9);
	text-align: center;
	line-height: 70px;
}

@media screen and (min-width: 768px) {
	.coming-soon__time {
		font-size: 48px;
		font-size: 3rem;
		width: 140px;
		height: 150px;
		line-height: 150px;
	}
}

.coming-soon__unit {
	font-size: 12px;
	font-size: 0.75rem;
}

@media screen and (min-width: 768px) {
	.coming-soon__unit {
		font-size: 16px;
		font-size: 1rem;
	}
}

.coming-soon__footer {
	padding-top: 70px;
	padding-bottom: 70px;
}

.coming-soon__form-container {
	max-width: 540px;
	margin-right: auto;
	margin-left: auto;
}

.coming-soon__form {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 30px;
}

.coming-soon__form > input {
	width: 70%;
}

.coming-soon__form > button {
	width: 30%;
	padding: 12px;
}

.create-listing__wrapper {
	padding: 20px;
}

@media screen and (min-width: 768px) {
	.create-listing__wrapper {
		padding: 50px;
	}
}

.create-listing__wrapper .page-title {
	margin-bottom: 30px;
}

.progressbar-container {
	border-radius: 20px;
	display: block;
	width: 100%;
	height: 8px;
	border: 1px solid #eeeeee;
	background-color: #ffffff;
}

.progressbar {
	border-radius: 20px;
	display: block;
	background-color: #fcc400;
	height: 100%;
}

.accordion-container {
	position: relative;
}

.accordion-container:before {
	content: "";
	position: absolute;
	left: 0;
	top: 5px;
	bottom: 3px;
	display: inline-block;
	width: 0;
	border-left: 1px dashed #aaaaaa;
}

.accordion {
	position: relative;
	padding-left: 20px;
	margin-bottom: 35px;
}

.accordion:before {
	border-radius: 50%;
	font-size: 8px;
	font-size: 0.5rem;
	content: "\f111";
	position: absolute;
	left: -8px;
	top: 0;
	display: block;
	width: 16px;
	height: 16px;
	background-color: #fcc400;
	color: #ffffff;
	text-align: center;
	line-height: 16px;
	font-family: "FontAwesome";
}

.accordion:first-of-type:before {
	font-size: 10px;
	font-size: 0.625rem;
	content: "\f041";
	left: -10px;
	width: 20px;
	height: 20px;
	background-color: #5e03ab;
	line-height: 20px;
}

.accordion:last-of-type:before {
	content: "\f024";
	background-color: #f15636;
}

.accordion__header {
	cursor: pointer;
}

.accordion__header > * {
	font-size: 16px;
	font-size: 1rem;
	margin-bottom: 0;
	color: #666666;
}

.accordion.is-open .accordion__header > * {
	color: #222222;
}

.accordion__content {
	height: 0;
	overflow: hidden;
	-webkit-transition: height 0.3s ease-out;
	transition: height 0.3s ease-out;
}

.accordion__inner {
	padding-top: 25px;
}

.accordion__image {
	max-width: 200px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	margin-right: 15px;
	margin-bottom: 15px;
}

@media screen and (min-width: 576px) {
	.accordion__image {
		margin-bottom: 0;
	}
}

.accordion__desc {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.single-listing-header {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	height: 300px;
}

@media screen and (min-width: 768px) {
	.single-listing-header {
		height: 450px;
	}
}

.single-listing-header-1 {
	background-image: url("../images/uploads/single-listing-bg-1.jpg");
}

@media screen and (min-width: 992px) {
	.single-listing-header-1 {
		height: 600px;
	}
}

.single-listing-header-2 {
	background-image: url("../images/uploads/single-listing-bg-2.jpg");
}

@media screen and (min-width: 992px) {
	.single-listing-header-2 {
		height: 660px;
	}
}

.single-listing-slider {
	max-width: 1920px;
	margin-right: 0;
	margin-left: auto;
	margin-bottom: 20px;
}

@media screen and (min-width: 992px) {
	.single-listing--layout-2 .listing-widget-container {
		margin-top: -400px;
		z-index: 20;
	}
}

@media screen and (min-width: 992px) {
	.single-listing--layout-3 .listing-widget-container {
		margin-top: -250px;
		z-index: 20;
	}
}

@media screen and (min-width: 992px) {
	.single-listing--layout-4 .listing-widget-container {
		margin-top: -100px;
	}
}

@media screen and (min-width: 992px) {
	.single-listing--layout-4 .listing-section-container {
		margin-top: -100px;
	}
}

.stars-outer {
	font-size: 16px;
	font-size: 1rem;
	position: relative;
	display: inline-block;
	color: #999999;
	font-family: "FontAwesome";
}

.stars-outer:before {
	content: "\f005 \f005 \f005 \f005 \f005";
	color: #dddddd;
}

.stars-inner {
	position: absolute;
	top: 0;
	left: 0;
	white-space: nowrap;
	overflow: hidden;
	width: 0;
}

.stars-inner:before {
	content: "\f005 \f005 \f005 \f005 \f005";
	color: #fcc400;
}

.stars {
	font-size: 20px;
	font-size: 1.25rem;
	color: #dddddd;
	cursor: pointer;
}

.star.hover {
	color: #fcc400;
}

.star.is-selected {
	color: #fcc400;
}

.map-controls {
	position: absolute;
	top: 10px;
	right: 10px;
	display: inline-block;
	z-index: 10;
}

.map-control:not(:last-child) {
	margin-bottom: 5px;
}

.map-control-button {
	width: 40px;
	height: 40px;
	background-color: #ffffff;
	border-radius: 50%;
	-webkit-box-shadow: 0 1px 2.97px 0.03px rgba(0, 0, 0, 0.2);
	box-shadow: 0 1px 2.97px 0.03px rgba(0, 0, 0, 0.2);
	-webkit-transition: background-color 0.3s ease-out;
	transition: background-color 0.3s ease-out;
}

.map-control-button:hover {
	background-color: #fcc400;
}

.site-footer {
	color: #eeeeee;
}

.site-footer__primary {
	padding: 75px 0;
	background-color: #282828;
}

.site-footer__logo {
	margin-bottom: 10px;
}

.site-footer__logo img {
	margin-right: auto;
	margin-left: auto;
}

.site-footer__links a {
	color: #eeeeee;
}

.site-footer__links a:hover {
	color: #fcc400;
}

.site-footer__social {
	font-size: 20px;
	font-size: 1.25rem;
}

.site-footer__social li:not(:last-child) {
	margin-right: 20px;
}

.site-footer__secondary {
	padding: 20px 0;
	background-color: #222222;
}

@media screen and (min-width: 768px) {
	.site-footer__secondary-wrapper {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
}

.site-footer__copyright {
	margin-bottom: 10px;
}

@media screen and (min-width: 768px) {
	.site-footer__copyright {
		margin-bottom: 0;
	}
}

.site-footer__details li:not(:last-child) {
	margin-right: 10px;
}

.site-footer__details li:not(:last-child):after {
	content: "/";
	display: inline-block;
	margin-left: 10px;
}

/*# sourceMappingURL=maps/style.css.map */
.category__image {
	padding: 0px 0px;
}

.bg-wild-sand img {
	width: 100%;
	/*height: 100%*/
}
