@charset "UTF-8";
/**
 * ****************************************************************************
 * CSS SITEMAP
 * ****************************************************************************
 * 01. NORMALIZE
 */

/*
 * ============================================================================
 * 01. RESET AND DEPENDENCIES
 * ============================================================================
 */

/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */

html {
	font-family: sans-serif;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
	display: block;
}

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden],
template {
	display: none;
}

a {
	background-color: transparent;
}

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

abbr[title] {
	border-bottom: 1px dotted;
}

b,
strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

mark {
	background: #ff0;
	color: #000;
}

small {
	font-size: 80%;
}

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

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

img {
	border: 0;
}

svg:not(:root) {
	overflow: hidden;
}

figure {
	margin: 1em 40px;
}

hr {
	box-sizing: content-box;
	height: 0;
}

pre {
	overflow: auto;
}

code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
}

button {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

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

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

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

input {
	line-height: normal;
}

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

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

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

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

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

legend {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
}

optgroup {
	font-weight: bold;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

td,
th {
	padding: 0;
}

/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */

@media print {
	*,
	*:before,
	*:after {
		background: transparent !important;
		color: #000 !important;
		box-shadow: none !important;
		text-shadow: none !important;
	}
	a,
	a:visited {
		text-decoration: underline;
	}
	a[href]:after {
		content: " (" attr(href) ")";
	}
	abbr[title]:after {
		content: " (" attr(title) ")";
	}
	a[href^="#"]:after,
	a[href^="javascript:"]:after {
		content: "";
	}
	pre,
	blockquote {
		border: 1px solid #999;
		page-break-inside: avoid;
	}
	thead {
		display: table-header-group;
	}
	tr,
	img {
		page-break-inside: avoid;
	}
	img {
		max-width: 100% !important;
	}
	p,
	h2,
	h3 {
		orphans: 3;
		widows: 3;
	}
	h2,
	h3 {
		page-break-after: avoid;
	}
	.navbar {
		display: none;
	}
	.btn>.caret,
	.dropup>.btn>.caret {
		border-top-color: #000 !important;
	}
	.label {
		border: 1px solid #000;
	}
	.table,
	table {
		border-collapse: collapse !important;
	}
	.table td,
	table td,
	.table th,
	table th {
		background-color: #fff !important;
	}
	.table-bordered th,
	table th,
	.table-bordered td,
	table td {
		border: 1px solid #ddd !important;
	}
}

/*
 * ============================================================================
 * 02. BASE
 * ============================================================================
 */

/**
 * --------------------------------------------------------
 * 2.1. CORE
 * --------------------------------------------------------
 */

* {
	box-sizing: border-box;
}

*:before,
*:after {
	box-sizing: border-box;
}

html {
	font-size: 10px;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
	font-family: ABeeZee, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 15px;
	line-height: 1.5;
	color: #666;
	background-color: #fff;
}

input,
button,
select,
textarea {
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
}

a {
	color: #999;
	text-decoration: none;
}

a:hover,
a:focus {
	color: #9ac100;
	text-decoration: underline;
}

a:focus {
	outline: thin dotted;
	outline: 5px auto -webkit-focus-ring-color;
	outline-offset: -2px;
}

figure {
	margin: 0;
}

img {
	vertical-align: middle;
}

.img-responsive {
	display: block;
	max-width: 100%;
	height: auto;
}

.img-rounded {
	border-radius: 6px;
}

.img-thumbnail {
	padding: 4px;
	line-height: 1.5;
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 4px;
	transition: all 0.2s ease-in-out;
	display: inline-block;
	max-width: 100%;
	height: auto;
}

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

hr {
	margin-top: 22px;
	margin-bottom: 22px;
	border: 0;
	border-top: 1px solid #eeeeee;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	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;
}

[role="button"] {
	cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
	font-family: Dosis, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: 700;
	line-height: 1.1;
	color: inherit;
}

h1 small,
h1 .small,
h2 small,
h2 .small,
h3 small,
h3 .small,
h4 small,
h4 .small,
h5 small,
h5 .small,
h6 small,
h6 .small,
.h1 small,
.h1 .small,
.h2 small,
.h2 .small,
.h3 small,
.h3 .small,
.h4 small,
.h4 .small,
.h5 small,
.h5 .small,
.h6 small,
.h6 .small {
	font-weight: normal;
	line-height: 1;
	color: #777777;
}

h1,
.h1,
h2,
.h2,
h3,
.h3 {
	margin-top: 22px;
	margin-bottom: 11px;
}

h1 small,
h1 .small,
.h1 small,
.h1 .small,
h2 small,
h2 .small,
.h2 small,
.h2 .small,
h3 small,
h3 .small,
.h3 small,
.h3 .small {
	font-size: 65%;
}

h4,
.h4,
h5,
.h5,
h6,
.h6 {
	margin-top: 11px;
	margin-bottom: 11px;
}

h4 small,
h4 .small,
.h4 small,
.h4 .small,
h5 small,
h5 .small,
.h5 small,
.h5 .small,
h6 small,
h6 .small,
.h6 small,
.h6 .small {
	font-size: 75%;
}

h1,
.h1 {
	font-size: 32px;
}

h2,
.h2 {
	font-size: 26px;
}

h3,
.h3 {
	font-size: 22px;
}

h4,
.h4 {
	font-size: 18px;
}

h5,
.h5 {
	font-size: 15px;
}

h6,
.h6 {
	font-size: 14px;
}

p {
	margin: 0 0 11px;
}

.lead {
	margin-bottom: 22px;
	font-size: 17px;
	font-weight: 300;
	line-height: 1.4;
}

@media (min-width: 768px) {
	.lead {
		font-size: 22.5px;
	}
}

small,
.small {
	font-size: 86%;
}

mark,
.mark {
	background-color: #fcf8e3;
	padding: .2em;
}

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

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

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

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

.text-nowrap {
	white-space: nowrap;
}

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

.text-uppercase,
.initialism {
	text-transform: uppercase;
}

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

.text-muted {
	color: #777777;
}

.text-primary {
	color: #337ab7;
}

a.text-primary:hover,
a.text-primary:focus {
	color: #286090;
}

.text-success {
	color: #3c763d;
}

a.text-success:hover,
a.text-success:focus {
	color: #2b542c;
}

.text-info {
	color: #31708f;
}

a.text-info:hover,
a.text-info:focus {
	color: #245269;
}

.text-warning {
	color: #8a6d3b;
}

a.text-warning:hover,
a.text-warning:focus {
	color: #66512c;
}

.text-danger {
	color: #a94442;
}

a.text-danger:hover,
a.text-danger:focus {
	color: #843534;
}

.bg-primary {
	color: #fff;
}

.bg-primary {
	background-color: #337ab7;
}

a.bg-primary:hover,
a.bg-primary:focus {
	background-color: #286090;
}

.bg-success {
	background-color: #dff0d8;
}

a.bg-success:hover,
a.bg-success:focus {
	background-color: #c1e2b3;
}

.bg-info {
	background-color: #d9edf7;
}

a.bg-info:hover,
a.bg-info:focus {
	background-color: #afd9ee;
}

.bg-warning {
	background-color: #fcf8e3;
}

a.bg-warning:hover,
a.bg-warning:focus {
	background-color: #f7ecb5;
}

.bg-danger {
	background-color: #f2dede;
}

a.bg-danger:hover,
a.bg-danger:focus {
	background-color: #e4b9b9;
}

.page-header {
	padding-bottom: 10px;
	margin: 44px 0 22px;
	border-bottom: 1px solid #eeeeee;
}

ul,
ol {
	margin-top: 0;
	margin-bottom: 11px;
}

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

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

.list-inline {
	padding-left: 0;
	list-style: none;
	margin-left: -5px;
}

.list-inline>li {
	display: inline-block;
	padding-left: 5px;
	padding-right: 5px;
}

dl {
	margin-top: 0;
	margin-bottom: 22px;
}

dt,
dd {
	line-height: 1.5;
}

dt {
	font-weight: bold;
}

dd {
	margin-left: 0;
}

.dl-horizontal dd:before,
.dl-horizontal dd:after {
	content: " ";
	display: table;
}

.dl-horizontal dd:after {
	clear: both;
}

@media (min-width: 768px) {
	.dl-horizontal dt {
		float: left;
		width: 160px;
		clear: left;
		text-align: right;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}
	.dl-horizontal dd {
		margin-left: 180px;
	}
}

abbr[title],
abbr[data-original-title] {
	cursor: help;
	border-bottom: 1px dotted #777777;
}

.initialism {
	font-size: 90%;
}

blockquote {
	padding: 11px 22px;
	margin: 0 0 22px;
	font-size: 18.75px;
	border-left: 5px solid #eeeeee;
}

blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
	margin-bottom: 0;
}

blockquote footer,
blockquote small,
blockquote .small {
	display: block;
	font-size: 80%;
	line-height: 1.5;
	color: #777777;
}

blockquote footer:before,
blockquote small:before,
blockquote .small:before {
	content: '\2014 \00A0';
}

.blockquote-reverse,
blockquote.pull-right {
	padding-right: 15px;
	padding-left: 0;
	border-right: 5px solid #eeeeee;
	border-left: 0;
	text-align: right;
}

.blockquote-reverse footer:before,
.blockquote-reverse small:before,
.blockquote-reverse .small:before,
blockquote.pull-right footer:before,
blockquote.pull-right small:before,
blockquote.pull-right .small:before {
	content: '';
}

.blockquote-reverse footer:after,
.blockquote-reverse small:after,
.blockquote-reverse .small:after,
blockquote.pull-right footer:after,
blockquote.pull-right small:after,
blockquote.pull-right .small:after {
	content: '\00A0 \2014';
}

address {
	margin-bottom: 22px;
	font-style: normal;
	line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
	text-transform: uppercase;
}

p {
	margin-bottom: 20px;
}

a {
	transition: all 0.2s ease-in-out;
}

a:hover,
a:active,
a:focus {
	text-decoration: none;
	color: #9ac100;
}

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

ul,
ol {
	padding-left: 15px;
}

ul li,
ol li {
	margin-bottom: 10px;
	position: relative;
}

ul ul,
ul ol,
ol ul,
ol ol {
	margin-top: 10px;
}

::-moz-selection {
	background: #9ac100;
	color: #fff;
}

::selection {
	background: #9ac100;
	color: #fff;
}

::-moz-selection {
	background: #9ac100;
	color: #fff;
}

html,
body {
	overflow-x: hidden;
}

blockquote {
	font-size: 15px;
	color: #000;
}

blockquote strong {
	font-weight: normal;
}

/**
 * --------------------------------------------------------
 * 2.2. CODE
 * --------------------------------------------------------
 */

code,
kbd,
pre,
samp {
	font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}

code {
	padding: 2px 4px;
	font-size: 90%;
	color: #c7254e;
	background-color: #f9f2f4;
	border-radius: 4px;
}

kbd {
	padding: 2px 4px;
	font-size: 90%;
	color: #fff;
	background-color: #333;
	border-radius: 3px;
	box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}

kbd kbd {
	padding: 0;
	font-size: 100%;
	font-weight: bold;
	box-shadow: none;
}

pre {
	display: block;
	padding: 10.5px;
	margin: 0 0 11px;
	font-size: 14px;
	line-height: 1.5;
	word-break: break-all;
	word-wrap: break-word;
	color: #333333;
	background-color: #f5f5f5;
	border: 1px solid #ccc;
	border-radius: 4px;
}

pre code {
	padding: 0;
	font-size: inherit;
	color: inherit;
	white-space: pre-wrap;
	background-color: transparent;
	border-radius: 0;
}

.pre-scrollable {
	max-height: 340px;
	overflow-y: scroll;
}

/**
 * --------------------------------------------------------
 * 2.3. GRID
 * --------------------------------------------------------
 */

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

.container:before,
.container:after {
	content: " ";
	display: table;
}

.container:after {
	clear: both;
}

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

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

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

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

.container-fluid:before,
.container-fluid:after {
	content: " ";
	display: table;
}

.container-fluid:after {
	clear: both;
}

.row {
	margin-left: -15px;
	margin-right: -15px;
}

.row:before,
.row:after {
	content: " ";
	display: table;
}

.row:after {
	clear: both;
}

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

.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
	float: left;
}

.col-xs-1 {
	width: 8.33333%;
}

.col-xs-2 {
	width: 16.66667%;
}

.col-xs-3 {
	width: 25%;
}

.col-xs-4 {
	width: 33.33333%;
}

.col-xs-5 {
	width: 41.66667%;
}

.col-xs-6 {
	width: 50%;
}

.col-xs-7 {
	width: 58.33333%;
}

.col-xs-8 {
	width: 66.66667%;
}

.col-xs-9 {
	width: 75%;
}

.col-xs-10 {
	width: 83.33333%;
}

.col-xs-11 {
	width: 91.66667%;
}

.col-xs-12 {
	width: 100%;
}

.col-xs-pull-0 {
	right: auto;
}

.col-xs-pull-1 {
	right: 8.33333%;
}

.col-xs-pull-2 {
	right: 16.66667%;
}

.col-xs-pull-3 {
	right: 25%;
}

.col-xs-pull-4 {
	right: 33.33333%;
}

.col-xs-pull-5 {
	right: 41.66667%;
}

.col-xs-pull-6 {
	right: 50%;
}

.col-xs-pull-7 {
	right: 58.33333%;
}

.col-xs-pull-8 {
	right: 66.66667%;
}

.col-xs-pull-9 {
	right: 75%;
}

.col-xs-pull-10 {
	right: 83.33333%;
}

.col-xs-pull-11 {
	right: 91.66667%;
}

.col-xs-pull-12 {
	right: 100%;
}

.col-xs-push-0 {
	left: auto;
}

.col-xs-push-1 {
	left: 8.33333%;
}

.col-xs-push-2 {
	left: 16.66667%;
}

.col-xs-push-3 {
	left: 25%;
}

.col-xs-push-4 {
	left: 33.33333%;
}

.col-xs-push-5 {
	left: 41.66667%;
}

.col-xs-push-6 {
	left: 50%;
}

.col-xs-push-7 {
	left: 58.33333%;
}

.col-xs-push-8 {
	left: 66.66667%;
}

.col-xs-push-9 {
	left: 75%;
}

.col-xs-push-10 {
	left: 83.33333%;
}

.col-xs-push-11 {
	left: 91.66667%;
}

.col-xs-push-12 {
	left: 100%;
}

.col-xs-offset-0 {
	margin-left: 0%;
}

.col-xs-offset-1 {
	margin-left: 8.33333%;
}

.col-xs-offset-2 {
	margin-left: 16.66667%;
}

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

.col-xs-offset-4 {
	margin-left: 33.33333%;
}

.col-xs-offset-5 {
	margin-left: 41.66667%;
}

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

.col-xs-offset-7 {
	margin-left: 58.33333%;
}

.col-xs-offset-8 {
	margin-left: 66.66667%;
}

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

.col-xs-offset-10 {
	margin-left: 83.33333%;
}

.col-xs-offset-11 {
	margin-left: 91.66667%;
}

.col-xs-offset-12 {
	margin-left: 100%;
}

@media (min-width: 768px) {
	.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 {
		float: left;
	}
	.col-sm-1 {
		width: 8.33333%;
	}
	.col-sm-2 {
		width: 16.66667%;
	}
	.col-sm-3 {
		width: 25%;
	}
	.col-sm-4 {
		width: 33.33333%;
	}
	.col-sm-5 {
		width: 41.66667%;
	}
	.col-sm-6 {
		width: 50%;
	}
	.col-sm-7 {
		width: 58.33333%;
	}
	.col-sm-8 {
		width: 66.66667%;
	}
	.col-sm-9 {
		width: 75%;
	}
	.col-sm-10 {
		width: 83.33333%;
	}
	.col-sm-11 {
		width: 91.66667%;
	}
	.col-sm-12 {
		width: 100%;
	}
	.col-sm-pull-0 {
		right: auto;
	}
	.col-sm-pull-1 {
		right: 8.33333%;
	}
	.col-sm-pull-2 {
		right: 16.66667%;
	}
	.col-sm-pull-3 {
		right: 25%;
	}
	.col-sm-pull-4 {
		right: 33.33333%;
	}
	.col-sm-pull-5 {
		right: 41.66667%;
	}
	.col-sm-pull-6 {
		right: 50%;
	}
	.col-sm-pull-7 {
		right: 58.33333%;
	}
	.col-sm-pull-8 {
		right: 66.66667%;
	}
	.col-sm-pull-9 {
		right: 75%;
	}
	.col-sm-pull-10 {
		right: 83.33333%;
	}
	.col-sm-pull-11 {
		right: 91.66667%;
	}
	.col-sm-pull-12 {
		right: 100%;
	}
	.col-sm-push-0 {
		left: auto;
	}
	.col-sm-push-1 {
		left: 8.33333%;
	}
	.col-sm-push-2 {
		left: 16.66667%;
	}
	.col-sm-push-3 {
		left: 25%;
	}
	.col-sm-push-4 {
		left: 33.33333%;
	}
	.col-sm-push-5 {
		left: 41.66667%;
	}
	.col-sm-push-6 {
		left: 50%;
	}
	.col-sm-push-7 {
		left: 58.33333%;
	}
	.col-sm-push-8 {
		left: 66.66667%;
	}
	.col-sm-push-9 {
		left: 75%;
	}
	.col-sm-push-10 {
		left: 83.33333%;
	}
	.col-sm-push-11 {
		left: 91.66667%;
	}
	.col-sm-push-12 {
		left: 100%;
	}
	.col-sm-offset-0 {
		margin-left: 0%;
	}
	.col-sm-offset-1 {
		margin-left: 8.33333%;
	}
	.col-sm-offset-2 {
		margin-left: 16.66667%;
	}
	.col-sm-offset-3 {
		margin-left: 25%;
	}
	.col-sm-offset-4 {
		margin-left: 33.33333%;
	}
	.col-sm-offset-5 {
		margin-left: 41.66667%;
	}
	.col-sm-offset-6 {
		margin-left: 50%;
	}
	.col-sm-offset-7 {
		margin-left: 58.33333%;
	}
	.col-sm-offset-8 {
		margin-left: 66.66667%;
	}
	.col-sm-offset-9 {
		margin-left: 75%;
	}
	.col-sm-offset-10 {
		margin-left: 83.33333%;
	}
	.col-sm-offset-11 {
		margin-left: 91.66667%;
	}
	.col-sm-offset-12 {
		margin-left: 100%;
	}
}

@media (min-width: 992px) {
	.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 {
		float: left;
	}
	.col-md-1 {
		width: 8.33333%;
	}
	.col-md-2 {
		width: 16.66667%;
	}
	.col-md-3 {
		width: 25%;
	}
	.col-md-4 {
		width: 33.33333%;
	}
	.col-md-5 {
		width: 41.66667%;
	}
	.col-md-6 {
		width: 50%;
	}
	.col-md-7 {
		width: 58.33333%;
	}
	.col-md-8 {
		width: 66.66667%;
	}
	.col-md-9 {
		width: 75%;
	}
	.col-md-10 {
		width: 83.33333%;
	}
	.col-md-11 {
		width: 91.66667%;
	}
	.col-md-12 {
		width: 100%;
	}
	.col-md-pull-0 {
		right: auto;
	}
	.col-md-pull-1 {
		right: 8.33333%;
	}
	.col-md-pull-2 {
		right: 16.66667%;
	}
	.col-md-pull-3 {
		right: 25%;
	}
	.col-md-pull-4 {
		right: 33.33333%;
	}
	.col-md-pull-5 {
		right: 41.66667%;
	}
	.col-md-pull-6 {
		right: 50%;
	}
	.col-md-pull-7 {
		right: 58.33333%;
	}
	.col-md-pull-8 {
		right: 66.66667%;
	}
	.col-md-pull-9 {
		right: 75%;
	}
	.col-md-pull-10 {
		right: 83.33333%;
	}
	.col-md-pull-11 {
		right: 91.66667%;
	}
	.col-md-pull-12 {
		right: 100%;
	}
	.col-md-push-0 {
		left: auto;
	}
	.col-md-push-1 {
		left: 8.33333%;
	}
	.col-md-push-2 {
		left: 16.66667%;
	}
	.col-md-push-3 {
		left: 25%;
	}
	.col-md-push-4 {
		left: 33.33333%;
	}
	.col-md-push-5 {
		left: 41.66667%;
	}
	.col-md-push-6 {
		left: 50%;
	}
	.col-md-push-7 {
		left: 58.33333%;
	}
	.col-md-push-8 {
		left: 66.66667%;
	}
	.col-md-push-9 {
		left: 75%;
	}
	.col-md-push-10 {
		left: 83.33333%;
	}
	.col-md-push-11 {
		left: 91.66667%;
	}
	.col-md-push-12 {
		left: 100%;
	}
	.col-md-offset-0 {
		margin-left: 0%;
	}
	.col-md-offset-1 {
		margin-left: 8.33333%;
	}
	.col-md-offset-2 {
		margin-left: 16.66667%;
	}
	.col-md-offset-3 {
		margin-left: 25%;
	}
	.col-md-offset-4 {
		margin-left: 33.33333%;
	}
	.col-md-offset-5 {
		margin-left: 41.66667%;
	}
	.col-md-offset-6 {
		margin-left: 50%;
	}
	.col-md-offset-7 {
		margin-left: 58.33333%;
	}
	.col-md-offset-8 {
		margin-left: 66.66667%;
	}
	.col-md-offset-9 {
		margin-left: 75%;
	}
	.col-md-offset-10 {
		margin-left: 83.33333%;
	}
	.col-md-offset-11 {
		margin-left: 91.66667%;
	}
	.col-md-offset-12 {
		margin-left: 100%;
	}
}

@media (min-width: 1200px) {
	.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 {
		float: left;
	}
	.col-lg-1 {
		width: 8.33333%;
	}
	.col-lg-2 {
		width: 16.66667%;
	}
	.col-lg-3 {
		width: 25%;
	}
	.col-lg-4 {
		width: 33.33333%;
	}
	.col-lg-5 {
		width: 41.66667%;
	}
	.col-lg-6 {
		width: 50%;
	}
	.col-lg-7 {
		width: 58.33333%;
	}
	.col-lg-8 {
		width: 66.66667%;
	}
	.col-lg-9 {
		width: 75%;
	}
	.col-lg-10 {
		width: 83.33333%;
	}
	.col-lg-11 {
		width: 91.66667%;
	}
	.col-lg-12 {
		width: 100%;
	}
	.col-lg-pull-0 {
		right: auto;
	}
	.col-lg-pull-1 {
		right: 8.33333%;
	}
	.col-lg-pull-2 {
		right: 16.66667%;
	}
	.col-lg-pull-3 {
		right: 25%;
	}
	.col-lg-pull-4 {
		right: 33.33333%;
	}
	.col-lg-pull-5 {
		right: 41.66667%;
	}
	.col-lg-pull-6 {
		right: 50%;
	}
	.col-lg-pull-7 {
		right: 58.33333%;
	}
	.col-lg-pull-8 {
		right: 66.66667%;
	}
	.col-lg-pull-9 {
		right: 75%;
	}
	.col-lg-pull-10 {
		right: 83.33333%;
	}
	.col-lg-pull-11 {
		right: 91.66667%;
	}
	.col-lg-pull-12 {
		right: 100%;
	}
	.col-lg-push-0 {
		left: auto;
	}
	.col-lg-push-1 {
		left: 8.33333%;
	}
	.col-lg-push-2 {
		left: 16.66667%;
	}
	.col-lg-push-3 {
		left: 25%;
	}
	.col-lg-push-4 {
		left: 33.33333%;
	}
	.col-lg-push-5 {
		left: 41.66667%;
	}
	.col-lg-push-6 {
		left: 50%;
	}
	.col-lg-push-7 {
		left: 58.33333%;
	}
	.col-lg-push-8 {
		left: 66.66667%;
	}
	.col-lg-push-9 {
		left: 75%;
	}
	.col-lg-push-10 {
		left: 83.33333%;
	}
	.col-lg-push-11 {
		left: 91.66667%;
	}
	.col-lg-push-12 {
		left: 100%;
	}
	.col-lg-offset-0 {
		margin-left: 0%;
	}
	.col-lg-offset-1 {
		margin-left: 8.33333%;
	}
	.col-lg-offset-2 {
		margin-left: 16.66667%;
	}
	.col-lg-offset-3 {
		margin-left: 25%;
	}
	.col-lg-offset-4 {
		margin-left: 33.33333%;
	}
	.col-lg-offset-5 {
		margin-left: 41.66667%;
	}
	.col-lg-offset-6 {
		margin-left: 50%;
	}
	.col-lg-offset-7 {
		margin-left: 58.33333%;
	}
	.col-lg-offset-8 {
		margin-left: 66.66667%;
	}
	.col-lg-offset-9 {
		margin-left: 75%;
	}
	.col-lg-offset-10 {
		margin-left: 83.33333%;
	}
	.col-lg-offset-11 {
		margin-left: 91.66667%;
	}
	.col-lg-offset-12 {
		margin-left: 100%;
	}
}

/**
 * --------------------------------------------------------
 * 2.4. TABLES
 * --------------------------------------------------------
 */

table {
	background-color: transparent;
}

caption {
	padding-top: 8px;
	padding-bottom: 8px;
	color: #777777;
	text-align: left;
}

th {
	text-align: left;
}

.table,
table {
	width: 100%;
	max-width: 100%;
	margin-bottom: 22px;
}

.table>thead>tr>th,
table>thead>tr>th,
.table>thead>tr>td,
table>thead>tr>td,
.table>tbody>tr>th,
table>tbody>tr>th,
.table>tbody>tr>td,
table>tbody>tr>td,
.table>tfoot>tr>th,
table>tfoot>tr>th,
.table>tfoot>tr>td,
table>tfoot>tr>td {
	padding: 8px;
	line-height: 1.5;
	vertical-align: top;
	border-top: 1px solid #eee;
}

.table>thead>tr>th,
table>thead>tr>th {
	vertical-align: bottom;
	border-bottom: 2px solid #eee;
}

.table>caption+thead>tr:first-child>th,
table>caption+thead>tr:first-child>th,
.table>caption+thead>tr:first-child>td,
table>caption+thead>tr:first-child>td,
.table>colgroup+thead>tr:first-child>th,
table>colgroup+thead>tr:first-child>th,
.table>colgroup+thead>tr:first-child>td,
table>colgroup+thead>tr:first-child>td,
.table>thead:first-child>tr:first-child>th,
table>thead:first-child>tr:first-child>th,
.table>thead:first-child>tr:first-child>td,
table>thead:first-child>tr:first-child>td {
	border-top: 0;
}

.table>tbody+tbody,
table>tbody+tbody {
	border-top: 2px solid #eee;
}

.table .table,
table .table,
.table table,
table table {
	background-color: #fff;
}

.table-condensed>thead>tr>th,
.table-condensed>thead>tr>td,
.table-condensed>tbody>tr>th,
.table-condensed>tbody>tr>td,
.table-condensed>tfoot>tr>th,
.table-condensed>tfoot>tr>td {
	padding: 5px;
}

.table-bordered,
table {
	border: 1px solid #eee;
}

.table-bordered>thead>tr>th,
table>thead>tr>th,
.table-bordered>thead>tr>td,
table>thead>tr>td,
.table-bordered>tbody>tr>th,
table>tbody>tr>th,
.table-bordered>tbody>tr>td,
table>tbody>tr>td,
.table-bordered>tfoot>tr>th,
table>tfoot>tr>th,
.table-bordered>tfoot>tr>td,
table>tfoot>tr>td {
	border: 1px solid #eee;
}

.table-bordered>thead>tr>th,
table>thead>tr>th,
.table-bordered>thead>tr>td,
table>thead>tr>td {
	border-bottom-width: 2px;
}

.table-striped>tbody>tr:nth-of-type(odd) {
	background-color: #f9f9f9;
}

.table-hover>tbody>tr:hover {
	background-color: #f5f5f5;
}

table col[class*="col-"] {
	position: static;
	float: none;
	display: table-column;
}

table td[class*="col-"],
table th[class*="col-"] {
	position: static;
	float: none;
	display: table-cell;
}

.table>thead>tr>td.active,
table>thead>tr>td.active,
.table>thead>tr>th.active,
table>thead>tr>th.active,
.table>thead>tr.active>td,
table>thead>tr.active>td,
.table>thead>tr.active>th,
table>thead>tr.active>th,
.table>tbody>tr>td.active,
table>tbody>tr>td.active,
.table>tbody>tr>th.active,
table>tbody>tr>th.active,
.table>tbody>tr.active>td,
table>tbody>tr.active>td,
.table>tbody>tr.active>th,
table>tbody>tr.active>th,
.table>tfoot>tr>td.active,
table>tfoot>tr>td.active,
.table>tfoot>tr>th.active,
table>tfoot>tr>th.active,
.table>tfoot>tr.active>td,
table>tfoot>tr.active>td,
.table>tfoot>tr.active>th,
table>tfoot>tr.active>th {
	background-color: #f5f5f5;
}

.table-hover>tbody>tr>td.active:hover,
.table-hover>tbody>tr>th.active:hover,
.table-hover>tbody>tr.active:hover>td,
.table-hover>tbody>tr:hover>.active,
.table-hover>tbody>tr.active:hover>th {
	background-color: #e8e8e8;
}

.table>thead>tr>td.success,
table>thead>tr>td.success,
.table>thead>tr>th.success,
table>thead>tr>th.success,
.table>thead>tr.success>td,
table>thead>tr.success>td,
.table>thead>tr.success>th,
table>thead>tr.success>th,
.table>tbody>tr>td.success,
table>tbody>tr>td.success,
.table>tbody>tr>th.success,
table>tbody>tr>th.success,
.table>tbody>tr.success>td,
table>tbody>tr.success>td,
.table>tbody>tr.success>th,
table>tbody>tr.success>th,
.table>tfoot>tr>td.success,
table>tfoot>tr>td.success,
.table>tfoot>tr>th.success,
table>tfoot>tr>th.success,
.table>tfoot>tr.success>td,
table>tfoot>tr.success>td,
.table>tfoot>tr.success>th,
table>tfoot>tr.success>th {
	background-color: #dff0d8;
}

.table-hover>tbody>tr>td.success:hover,
.table-hover>tbody>tr>th.success:hover,
.table-hover>tbody>tr.success:hover>td,
.table-hover>tbody>tr:hover>.success,
.table-hover>tbody>tr.success:hover>th {
	background-color: #d0e9c6;
}

.table>thead>tr>td.info,
table>thead>tr>td.info,
.table>thead>tr>th.info,
table>thead>tr>th.info,
.table>thead>tr.info>td,
table>thead>tr.info>td,
.table>thead>tr.info>th,
table>thead>tr.info>th,
.table>tbody>tr>td.info,
table>tbody>tr>td.info,
.table>tbody>tr>th.info,
table>tbody>tr>th.info,
.table>tbody>tr.info>td,
table>tbody>tr.info>td,
.table>tbody>tr.info>th,
table>tbody>tr.info>th,
.table>tfoot>tr>td.info,
table>tfoot>tr>td.info,
.table>tfoot>tr>th.info,
table>tfoot>tr>th.info,
.table>tfoot>tr.info>td,
table>tfoot>tr.info>td,
.table>tfoot>tr.info>th,
table>tfoot>tr.info>th {
	background-color: #d9edf7;
}

.table-hover>tbody>tr>td.info:hover,
.table-hover>tbody>tr>th.info:hover,
.table-hover>tbody>tr.info:hover>td,
.table-hover>tbody>tr:hover>.info,
.table-hover>tbody>tr.info:hover>th {
	background-color: #c4e3f3;
}

.table>thead>tr>td.warning,
table>thead>tr>td.warning,
.table>thead>tr>th.warning,
table>thead>tr>th.warning,
.table>thead>tr.warning>td,
table>thead>tr.warning>td,
.table>thead>tr.warning>th,
table>thead>tr.warning>th,
.table>tbody>tr>td.warning,
table>tbody>tr>td.warning,
.table>tbody>tr>th.warning,
table>tbody>tr>th.warning,
.table>tbody>tr.warning>td,
table>tbody>tr.warning>td,
.table>tbody>tr.warning>th,
table>tbody>tr.warning>th,
.table>tfoot>tr>td.warning,
table>tfoot>tr>td.warning,
.table>tfoot>tr>th.warning,
table>tfoot>tr>th.warning,
.table>tfoot>tr.warning>td,
table>tfoot>tr.warning>td,
.table>tfoot>tr.warning>th,
table>tfoot>tr.warning>th {
	background-color: #fcf8e3;
}

.table-hover>tbody>tr>td.warning:hover,
.table-hover>tbody>tr>th.warning:hover,
.table-hover>tbody>tr.warning:hover>td,
.table-hover>tbody>tr:hover>.warning,
.table-hover>tbody>tr.warning:hover>th {
	background-color: #faf2cc;
}

.table>thead>tr>td.danger,
table>thead>tr>td.danger,
.table>thead>tr>th.danger,
table>thead>tr>th.danger,
.table>thead>tr.danger>td,
table>thead>tr.danger>td,
.table>thead>tr.danger>th,
table>thead>tr.danger>th,
.table>tbody>tr>td.danger,
table>tbody>tr>td.danger,
.table>tbody>tr>th.danger,
table>tbody>tr>th.danger,
.table>tbody>tr.danger>td,
table>tbody>tr.danger>td,
.table>tbody>tr.danger>th,
table>tbody>tr.danger>th,
.table>tfoot>tr>td.danger,
table>tfoot>tr>td.danger,
.table>tfoot>tr>th.danger,
table>tfoot>tr>th.danger,
.table>tfoot>tr.danger>td,
table>tfoot>tr.danger>td,
.table>tfoot>tr.danger>th,
table>tfoot>tr.danger>th {
	background-color: #f2dede;
}

.table-hover>tbody>tr>td.danger:hover,
.table-hover>tbody>tr>th.danger:hover,
.table-hover>tbody>tr.danger:hover>td,
.table-hover>tbody>tr:hover>.danger,
.table-hover>tbody>tr.danger:hover>th {
	background-color: #ebcccc;
}

.table-responsive {
	overflow-x: auto;
	min-height: 0.01%;
}

@media screen and (max-width: 767px) {
	.table-responsive {
		width: 100%;
		margin-bottom: 16.5px;
		overflow-y: hidden;
		-ms-overflow-style: -ms-autohiding-scrollbar;
		border: 1px solid #eee;
	}
	.table-responsive>.table,
	.table-responsive>table {
		margin-bottom: 0;
	}
	.table-responsive>.table>thead>tr>th,
	.table-responsive>table>thead>tr>th,
	.table-responsive>.table>thead>tr>td,
	.table-responsive>table>thead>tr>td,
	.table-responsive>.table>tbody>tr>th,
	.table-responsive>table>tbody>tr>th,
	.table-responsive>.table>tbody>tr>td,
	.table-responsive>table>tbody>tr>td,
	.table-responsive>.table>tfoot>tr>th,
	.table-responsive>table>tfoot>tr>th,
	.table-responsive>.table>tfoot>tr>td,
	.table-responsive>table>tfoot>tr>td {
		white-space: nowrap;
	}
	.table-responsive>.table-bordered,
	.table-responsive>table {
		border: 0;
	}
	.table-responsive>.table-bordered>thead>tr>th:first-child,
	.table-responsive>table>thead>tr>th:first-child,
	.table-responsive>.table-bordered>thead>tr>td:first-child,
	.table-responsive>table>thead>tr>td:first-child,
	.table-responsive>.table-bordered>tbody>tr>th:first-child,
	.table-responsive>table>tbody>tr>th:first-child,
	.table-responsive>.table-bordered>tbody>tr>td:first-child,
	.table-responsive>table>tbody>tr>td:first-child,
	.table-responsive>.table-bordered>tfoot>tr>th:first-child,
	.table-responsive>table>tfoot>tr>th:first-child,
	.table-responsive>.table-bordered>tfoot>tr>td:first-child,
	.table-responsive>table>tfoot>tr>td:first-child {
		border-left: 0;
	}
	.table-responsive>.table-bordered>thead>tr>th:last-child,
	.table-responsive>table>thead>tr>th:last-child,
	.table-responsive>.table-bordered>thead>tr>td:last-child,
	.table-responsive>table>thead>tr>td:last-child,
	.table-responsive>.table-bordered>tbody>tr>th:last-child,
	.table-responsive>table>tbody>tr>th:last-child,
	.table-responsive>.table-bordered>tbody>tr>td:last-child,
	.table-responsive>table>tbody>tr>td:last-child,
	.table-responsive>.table-bordered>tfoot>tr>th:last-child,
	.table-responsive>table>tfoot>tr>th:last-child,
	.table-responsive>.table-bordered>tfoot>tr>td:last-child,
	.table-responsive>table>tfoot>tr>td:last-child {
		border-right: 0;
	}
	.table-responsive>.table-bordered>tbody>tr:last-child>th,
	.table-responsive>table>tbody>tr:last-child>th,
	.table-responsive>.table-bordered>tbody>tr:last-child>td,
	.table-responsive>table>tbody>tr:last-child>td,
	.table-responsive>.table-bordered>tfoot>tr:last-child>th,
	.table-responsive>table>tfoot>tr:last-child>th,
	.table-responsive>.table-bordered>tfoot>tr:last-child>td,
	.table-responsive>table>tfoot>tr:last-child>td {
		border-bottom: 0;
	}
}

/**
 * --------------------------------------------------------
 * 2.5. FORMS
 * --------------------------------------------------------
 */

fieldset {
	padding: 0;
	margin: 0;
	border: 0;
	min-width: 0;
}

legend {
	display: block;
	width: 100%;
	padding: 0;
	margin-bottom: 22px;
	font-size: 22.5px;
	line-height: inherit;
	color: #333333;
	border: 0;
	border-bottom: 1px solid #e5e5e5;
}

label {
	display: inline-block;
	margin-bottom: 5px;
	font-weight: 400;
}

input[type="file"] {
	display: block;
}

input[type="range"] {
	display: block;
	width: 100%;
}

select[multiple],
select[size] {
	height: auto;
}

input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
	outline: thin dotted;
	outline: 5px auto -webkit-focus-ring-color;
	outline-offset: -2px;
}

output {
	display: block;
	padding-top: 7px;
	font-size: 15px;
	line-height: 1.5;
	color: #555555;
}

select,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"] {
	display: block;
	width: 100%;
	height: 40px;
	padding: 6px 15px;
	font-size: 15px;
	line-height: 1.5;
	color: #555555;
	background-color: #fff;
	background-image: none;
	border: 2px solid #e1e1e1;
	border-radius: 0;
	transition: border-color ease-in-out 0.15s;
}

select:hover,
textarea:hover,
input[type="text"]:hover,
input[type="password"]:hover,
input[type="datetime"]:hover,
input[type="datetime-local"]:hover,
input[type="date"]:hover,
input[type="month"]:hover,
input[type="time"]:hover,
input[type="week"]:hover,
input[type="number"]:hover,
input[type="email"]:hover,
input[type="url"]:hover,
input[type="search"]:hover,
input[type="tel"]:hover,
input[type="color"]:hover {
	border-color: #d9d9d9;
}

select:focus,
textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus {
	outline: 0;
	border-color: #9ac100;
}

.amy-dark-bg select,
.amy-dark-bg textarea,
.amy-dark-bg input[type="text"],
.amy-dark-bg input[type="password"],
.amy-dark-bg input[type="datetime"],
.amy-dark-bg input[type="datetime-local"],
.amy-dark-bg input[type="date"],
.amy-dark-bg input[type="month"],
.amy-dark-bg input[type="time"],
.amy-dark-bg input[type="week"],
.amy-dark-bg input[type="number"],
.amy-dark-bg input[type="email"],
.amy-dark-bg input[type="url"],
.amy-dark-bg input[type="search"],
.amy-dark-bg input[type="tel"],
.amy-dark-bg input[type="color"] {
	background: transparent;
	color: #fff;
	border-color: #f2f2f2;
}

.amy-dark-bg select::-moz-placeholder,
.amy-dark-bg textarea::-moz-placeholder,
.amy-dark-bg input[type="text"]::-moz-placeholder,
.amy-dark-bg input[type="password"]::-moz-placeholder,
.amy-dark-bg input[type="datetime"]::-moz-placeholder,
.amy-dark-bg input[type="datetime-local"]::-moz-placeholder,
.amy-dark-bg input[type="date"]::-moz-placeholder,
.amy-dark-bg input[type="month"]::-moz-placeholder,
.amy-dark-bg input[type="time"]::-moz-placeholder,
.amy-dark-bg input[type="week"]::-moz-placeholder,
.amy-dark-bg input[type="number"]::-moz-placeholder,
.amy-dark-bg input[type="email"]::-moz-placeholder,
.amy-dark-bg input[type="url"]::-moz-placeholder,
.amy-dark-bg input[type="search"]::-moz-placeholder,
.amy-dark-bg input[type="tel"]::-moz-placeholder,
.amy-dark-bg input[type="color"]::-moz-placeholder {
	color: #f2f2f2;
	opacity: 1;
}

.amy-dark-bg select:-ms-input-placeholder,
.amy-dark-bg textarea:-ms-input-placeholder,
.amy-dark-bg input[type="text"]:-ms-input-placeholder,
.amy-dark-bg input[type="password"]:-ms-input-placeholder,
.amy-dark-bg input[type="datetime"]:-ms-input-placeholder,
.amy-dark-bg input[type="datetime-local"]:-ms-input-placeholder,
.amy-dark-bg input[type="date"]:-ms-input-placeholder,
.amy-dark-bg input[type="month"]:-ms-input-placeholder,
.amy-dark-bg input[type="time"]:-ms-input-placeholder,
.amy-dark-bg input[type="week"]:-ms-input-placeholder,
.amy-dark-bg input[type="number"]:-ms-input-placeholder,
.amy-dark-bg input[type="email"]:-ms-input-placeholder,
.amy-dark-bg input[type="url"]:-ms-input-placeholder,
.amy-dark-bg input[type="search"]:-ms-input-placeholder,
.amy-dark-bg input[type="tel"]:-ms-input-placeholder,
.amy-dark-bg input[type="color"]:-ms-input-placeholder {
	color: #f2f2f2;
}

.amy-dark-bg select::-webkit-input-placeholder,
.amy-dark-bg textarea::-webkit-input-placeholder,
.amy-dark-bg input[type="text"]::-webkit-input-placeholder,
.amy-dark-bg input[type="password"]::-webkit-input-placeholder,
.amy-dark-bg input[type="datetime"]::-webkit-input-placeholder,
.amy-dark-bg input[type="datetime-local"]::-webkit-input-placeholder,
.amy-dark-bg input[type="date"]::-webkit-input-placeholder,
.amy-dark-bg input[type="month"]::-webkit-input-placeholder,
.amy-dark-bg input[type="time"]::-webkit-input-placeholder,
.amy-dark-bg input[type="week"]::-webkit-input-placeholder,
.amy-dark-bg input[type="number"]::-webkit-input-placeholder,
.amy-dark-bg input[type="email"]::-webkit-input-placeholder,
.amy-dark-bg input[type="url"]::-webkit-input-placeholder,
.amy-dark-bg input[type="search"]::-webkit-input-placeholder,
.amy-dark-bg input[type="tel"]::-webkit-input-placeholder,
.amy-dark-bg input[type="color"]::-webkit-input-placeholder {
	color: #f2f2f2;
}

.amy-dark-bg select:focus,
.amy-dark-bg textarea:focus,
.amy-dark-bg input[type="text"]:focus,
.amy-dark-bg input[type="password"]:focus,
.amy-dark-bg input[type="datetime"]:focus,
.amy-dark-bg input[type="datetime-local"]:focus,
.amy-dark-bg input[type="date"]:focus,
.amy-dark-bg input[type="month"]:focus,
.amy-dark-bg input[type="time"]:focus,
.amy-dark-bg input[type="week"]:focus,
.amy-dark-bg input[type="number"]:focus,
.amy-dark-bg input[type="email"]:focus,
.amy-dark-bg input[type="url"]:focus,
.amy-dark-bg input[type="search"]:focus,
.amy-dark-bg input[type="tel"]:focus,
.amy-dark-bg input[type="color"]:focus {
	border-color: #fff;
}

.amy-dark-bg option {
	color: #666;
}

textarea {
	height: auto;
}

input[type="search"] {
	-webkit-appearance: none;
	box-sizing: border-box;
}

input[type="date"] {
	line-height: 40px;
}

.input-rounded {
	border-radius: 20px;
}

.required {
	color: #d9534f;
}

.fancybox-skin {
	padding: 0 !important;
	border-radius: 0 !important;
	background: #fff !important;
}

.fancybox-skin #amy-user-popup .amy-user-tab .amy-tab-contents {
	padding: 5px 25px 25px 25px;
}

.fancybox-skin #amy-user-popup .amy-user-tab .amy-tab-nav ul li {
	width: 50%;
	text-align: center;
	background: #eee;
	margin-bottom: 10px;
	padding: 1px 0;
}

.fancybox-skin #amy-user-popup .amy-user-tab .amy-tab-nav ul li a {
	margin-right: 0;
	border-right: none;
	padding: 15px !important;
}

.fancybox-skin #amy-user-popup .amy-user-tab .amy-tab-nav ul li.active {
	border-top: none;
	margin-top: 0;
	background: #fff;
}

.fancybox-skin #amy-user-popup .amy-user-tab .amy-tab-nav ul li.active a {
	color: #9ac100;
}

.amy-page-user .input[type="password"],
.amy-page-user .input[type="text"] {
	border-radius: 0 !important;
}

.amy-page-user .amy-user-tab {
	max-width: 100%;
}

.amy-page-user .amy-user-tab .amy-tab-contents {
	padding: 20px 0;
	text-align: left;
}

.amy-page-user .amy-user-tab .amy-tab-contents #user_login,
.amy-page-user .amy-user-tab .amy-tab-contents #user_email {
	border-radius: 0 !important;
}

.amy-page-user .amy-user-tab .amy-tab-nav ul {
	border-top: none;
	text-align: center;
}

.amy-page-user .amy-user-tab .amy-tab-nav ul li {
	text-align: center;
	background: #fff;
	margin-bottom: 0px;
	padding: 1px 10px;
	display: inline-block;
	float: none;
	position: relative;
}

.amy-page-user .amy-user-tab .amy-tab-nav ul li:first-child:after {
	background: #eee none repeat scroll 0 0;
	content: "";
	display: block;
	height: 15px;
	position: absolute;
	right: -4px;
	top: 14px;
	width: 2px;
}

.amy-page-user .amy-user-tab .amy-tab-nav ul li a {
	margin-right: 0;
	border-right: none;
	padding: 10px 20px !important;
}

.amy-page-user .amy-user-tab .amy-tab-nav ul li.active {
	border-top: none;
	margin-top: 0;
	background: #fff;
}

.amy-page-user .amy-user-tab .amy-tab-nav ul li.active a {
	color: #9ac100;
}

.amyui-fancy-select {
	position: relative;
}

.amyui-fancy-select .fs-disabled {
	opacity: .5;
}

.amyui-fancy-select select:focus+.fs-trigger {
	border-color: #9ac100;
}

.amyui-fancy-select .fs-trigger {
	cursor: pointer;
	display: block;
	width: 100%;
	height: 40px;
	padding: 6px 15px;
	padding-right: 30px;
	font-size: 15px;
	line-height: 1.6;
	color: #555555;
	background-color: #fff;
	background-image: none;
	border: 2px solid #e1e1e1;
	border-radius: 5px;
	transition: border-color ease-in-out 0.15s;
	transition: all 0.2s ease-out;
}

.amyui-fancy-select .fs-trigger:hover {
	border-color: #d9d9d9;
}

.amyui-fancy-select .fs-trigger:after {
	content: "";
	display: block;
	position: absolute;
	width: 0;
	height: 0;
	border: 5px solid transparent;
	border-top-color: #4b5468;
	top: 18px;
	right: 10px;
}

.amyui-fancy-select .fs-trigger.input-rounded {
	border-radius: 20px;
	padding-left: 20px;
	padding-right: 40px;
}

.amyui-fancy-select .fs-trigger.input-rounded:after {
	right: 20px;
}

.amyui-fancy-select .fs-trigger.fs-open {
	border-color: #9ac100;
}

.amyui-fancy-select .fs-trigger.fs-open:after {
	border-top-color: transparent;
	border-bottom-color: #7a8498;
	top: 12px;
}

.amyui-fancy-select ul.fs-options {
	list-style: none;
	margin: 0;
	padding: 5px 0;
	position: absolute;
	top: 40px;
	left: 0;
	z-index: 50;
	overflow: visible;
	background: #9ac100;
	width: 100%;
	min-width: 200px;
	border-radius: 4px;
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.3s ease-out, visibility 0.3s ease-out, top 0.3s ease-out, bottom 0.3s ease-out;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.amyui-fancy-select ul.fs-options:after {
	bottom: 100%;
	right: 20px;
	border: solid transparent;
	content: "";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: transparent;
	border-bottom-color: #9ac100;
	border-width: 6px;
	margin-left: -6px;
}

.amyui-fancy-select ul.fs-options.fs-open {
	visibility: visible;
	top: 50px;
	opacity: 1;
}

.amyui-fancy-select ul.fs-options.fs-overflowing {
	top: auto;
	bottom: 40px;
}

.amyui-fancy-select ul.fs-options.fs-overflowing:after {
	top: 100%;
	border-bottom-color: transparent;
	border-top-color: #9ac100;
}

.amyui-fancy-select ul.fs-options.fs-overflowing.fs-open {
	top: auto;
	bottom: 50px;
}

.amyui-fancy-select ul.fs-options li {
	padding: 8px 12px;
	margin: 0;
	color: #fff;
	cursor: pointer;
	white-space: nowrap;
	transition: all 0.2s ease-out;
}

.amyui-fancy-select ul.fs-options li.fs-selected {
	background: #718e00;
}

.amyui-fancy-select ul.fs-options li.fs-hover {
	background: #86a800;
}

.amyui-fancy-select ul.fs-options li.fs-optgroup {
	cursor: default;
	padding: 10px 0 0 0;
}

.amyui-fancy-select ul.fs-options li.fs-optgroup span {
	padding-left: 10px;
	display: block;
	font-style: italic;
	opacity: 0.8;
}

.amyui-fancy-select ul.fs-optgroup {
	list-style: none;
	padding: 5px 0 0 0;
}

.amyui-fancy-select ul.fs-optgroup li {
	padding-left: 30px;
}

.amyui-number-input {
	display: inline-block;
	position: relative;
	vertical-align: middle;
}

.amyui-number-input input {
	padding-left: 36px;
	padding-right: 36px;
	width: auto;
	-moz-appearance: textfield;
}

.amyui-number-input input::-webkit-outer-spin-button,
.amyui-number-input input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.amyui-number-input span {
	position: absolute;
	width: 36px;
	height: 16px;
	line-height: 16px;
	z-index: 1;
	top: 12px;
	color: #e1e1e1;
	cursor: pointer;
	text-align: center;
	vertical-align: middle;
	display: inline-block;
}

.amyui-number-input span:hover {
	color: #9ac100;
}

.amyui-number-input span.ni-up {
	right: 2px;
	border-left: 1px solid #e1e1e1;
}

.amyui-number-input span.ni-up:before {
	content: "+";
}

.amyui-number-input span.ni-down {
	left: 2px;
	border-right: 1px solid #e1e1e1;
}

.amyui-number-input span.ni-down:before {
	content: "-";
}

/**
 * --------------------------------------------------------
 * 2.6. BUTTONS
 * --------------------------------------------------------
 */

input[type="button"],
input[type="submit"],
input[type="reset"],
button,
.button,
.widget_tag_cloud .tagcloud a {
	color: #9ac100;
	font-family: Dosis, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	background: transparent;
	display: inline-block;
	line-height: 1;
	border: 2px solid #e1e1e1;
	padding: 10px 40px;
	margin-bottom: 5px;
	border-radius: 25px;
	vertical-align: bottom;
	transition: all 0.2s ease-in-out;
}

input[type="button"]:focus,
input[type="button"]:hover,
input[type="button"]:active,
input[type="submit"]:focus,
input[type="submit"]:hover,
input[type="submit"]:active,
input[type="reset"]:focus,
input[type="reset"]:hover,
input[type="reset"]:active,
button:focus,
button:hover,
button:active,
.button:focus,
.widget_tag_cloud .tagcloud a:focus,
.button:hover,
.widget_tag_cloud .tagcloud a:hover,
.button:active,
.widget_tag_cloud .tagcloud a:active {
	outline: none;
	text-decoration: none;
	color: #9ac100;
	border-color: #c8c8c8;
}

input[type="button"].disabled,
input[type="button"][disabled],
input[type="submit"].disabled,
input[type="submit"][disabled],
input[type="reset"].disabled,
input[type="reset"][disabled],
button.disabled,
button[disabled],
.button.disabled,
.widget_tag_cloud .tagcloud a.disabled,
.button[disabled],
.widget_tag_cloud .tagcloud a[disabled] {
	cursor: not-allowed;
	opacity: 0.5;
}

input[type="button"].disabled:focus,
input[type="button"].disabled:hover,
input[type="button"].disabled:active,
input[type="button"][disabled]:focus,
input[type="button"][disabled]:hover,
input[type="button"][disabled]:active,
input[type="submit"].disabled:focus,
input[type="submit"].disabled:hover,
input[type="submit"].disabled:active,
input[type="submit"][disabled]:focus,
input[type="submit"][disabled]:hover,
input[type="submit"][disabled]:active,
input[type="reset"].disabled:focus,
input[type="reset"].disabled:hover,
input[type="reset"].disabled:active,
input[type="reset"][disabled]:focus,
input[type="reset"][disabled]:hover,
input[type="reset"][disabled]:active,
button.disabled:focus,
button.disabled:hover,
button.disabled:active,
button[disabled]:focus,
button[disabled]:hover,
button[disabled]:active,
.button.disabled:focus,
.widget_tag_cloud .tagcloud a.disabled:focus,
.button.disabled:hover,
.widget_tag_cloud .tagcloud a.disabled:hover,
.button.disabled:active,
.widget_tag_cloud .tagcloud a.disabled:active,
.button[disabled]:focus,
.widget_tag_cloud .tagcloud a[disabled]:focus,
.button[disabled]:hover,
.widget_tag_cloud .tagcloud a[disabled]:hover,
.button[disabled]:active,
.widget_tag_cloud .tagcloud a[disabled]:active {
	background-color: inherit;
	color: inherit;
}

input[type="button"] i.fa,
input[type="submit"] i.fa,
input[type="reset"] i.fa,
button i.fa,
.button i.fa,
.widget_tag_cloud .tagcloud a i.fa {
	margin-right: 5px;
}

.button-primary,
input[type='submit'],
.submit {
	color: #fff;
	background: #9ac100;
	border-color: #9ac100;
}

.button-primary:focus,
input:focus[type='submit'],
.submit:focus,
.button-primary:hover,
input:hover[type='submit'],
.submit:hover,
.button-primary:active,
input:active[type='submit'],
.submit:active {
	color: #fff;
	background: #aedb00;
	border-color: #aedb00;
}

.button-primary.disabled:focus,
input.disabled:focus[type='submit'],
.disabled.submit:focus,
.button-primary.disabled:hover,
input.disabled:hover[type='submit'],
.disabled.submit:hover,
.button-primary.disabled:active,
input.disabled:active[type='submit'],
.disabled.submit:active,
.button-primary[disabled]:focus,
input[disabled]:focus[type='submit'],
.submit[disabled]:focus,
.button-primary[disabled]:hover,
input[disabled]:hover[type='submit'],
.submit[disabled]:hover,
.button-primary[disabled]:active,
input[disabled]:active[type='submit'],
.submit[disabled]:active {
	color: #fff;
	background: #9ac100;
	border-color: #9ac100;
}

.button-success {
	color: #fff;
	background: #5cb85c;
	border-color: #5cb85c;
}

.button-success:focus,
.button-success:hover,
.button-success:active {
	color: #fff;
	background: #6ec06e;
	border-color: #6ec06e;
}

.button-success.disabled:focus,
.button-success.disabled:hover,
.button-success.disabled:active,
.button-success[disabled]:focus,
.button-success[disabled]:hover,
.button-success[disabled]:active {
	color: #fff;
	background: #5cb85c;
	border-color: #5cb85c;
}

.button-info {
	color: #fff;
	background: #1ba39c;
	border-color: #1ba39c;
}

.button-info:focus,
.button-info:hover,
.button-info:active {
	color: #fff;
	background: #1fb9b1;
	border-color: #1fb9b1;
}

.button-info.disabled:focus,
.button-info.disabled:hover,
.button-info.disabled:active,
.button-info[disabled]:focus,
.button-info[disabled]:hover,
.button-info[disabled]:active {
	color: #fff;
	background: #1ba39c;
	border-color: #1ba39c;
}

.button-warning {
	color: #fff;
	background: #f0ad4e;
	border-color: #f0ad4e;
}

.button-warning:focus,
.button-warning:hover,
.button-warning:active {
	color: #fff;
	background: #f2b866;
	border-color: #f2b866;
}

.button-warning.disabled:focus,
.button-warning.disabled:hover,
.button-warning.disabled:active,
.button-warning[disabled]:focus,
.button-warning[disabled]:hover,
.button-warning[disabled]:active {
	color: #fff;
	background: #f0ad4e;
	border-color: #f0ad4e;
}

.button-danger {
	color: #fff;
	background: #d9534f;
	border-color: #d9534f;
}

.button-danger:focus,
.button-danger:hover,
.button-danger:active {
	color: #fff;
	background: #de6764;
	border-color: #de6764;
}

.button-danger.disabled:focus,
.button-danger.disabled:hover,
.button-danger.disabled:active,
.button-danger[disabled]:focus,
.button-danger[disabled]:hover,
.button-danger[disabled]:active {
	color: #fff;
	background: #d9534f;
	border-color: #d9534f;
}

.button-inverse {
	color: #fff;
	background: #222;
	border-color: #222;
}

.button-inverse:focus,
.button-inverse:hover,
.button-inverse:active {
	color: #fff;
	background: #2f2f2f;
	border-color: #2f2f2f;
}

.button-inverse.disabled:focus,
.button-inverse.disabled:hover,
.button-inverse.disabled:active,
.button-inverse[disabled]:focus,
.button-inverse[disabled]:hover,
.button-inverse[disabled]:active {
	color: #fff;
	background: #222;
	border-color: #222;
}

.button-block {
	display: block;
	width: 100%;
	margin-left: 0;
	margin-right: 0;
}

.section-videoplay {
	position: relative;
	height: 560px;
}

.section-videoplay .vc_column-inner {
	height: 560px;
}

.section-videoplay:after {
	content: '';
	position: absolute;
	background-color: rgba(0, 0, 0, 0.65);
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.section-videoplay .wpb_wrapper {
	z-index: 99;
	position: relative;
}

.section-videoplay .wpb_wrapper .ult-modal-input-wrapper {
	margin-top: 140px;
}

.section-videoplay .btn-modal {
	width: 76px;
	height: 76px;
	line-height: 73px;
	text-align: center;
	color: rgba(234, 157, 6, 0.35);
	border-radius: 50%;
	border: 3px solid rgba(234, 157, 6, 0.35);
	position: relative;
	font-size: 0;
}

.section-videoplay .btn-modal:before {
	content: "\f04b";
	font: normal normal normal 14px/1 FontAwesome;
	font-size: 26px;
	margin-left: 6px;
	color: #ea9d06;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.section-videoplay .btn-modal:hover {
	border-color: #ea9d06;
}

/**
 * --------------------------------------------------------
 * 2.7. UTILITIES
 * --------------------------------------------------------
 */

.clearfix:before,
.clearfix:after {
	content: " ";
	display: table;
}

.clearfix:after {
	clear: both;
}

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

.pull-right {
	float: right !important;
}

.pull-left {
	float: left !important;
}

.hide {
	display: none !important;
}

.show {
	display: block !important;
}

.invisible {
	visibility: hidden;
}

.text-hide {
	font: 0/0 a;
	color: transparent;
	text-shadow: none;
	background-color: transparent;
	border: 0;
}

.hidden {
	display: none !important;
}

.affix {
	position: fixed;
}

@-ms-viewport {
	width: device-width;
}

.visible-xs {
	display: none !important;
}

.visible-sm {
	display: none !important;
}

.visible-md {
	display: none !important;
}

.visible-lg {
	display: none !important;
}

.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
	display: none !important;
}

@media (max-width: 767px) {
	.visible-xs {
		display: block !important;
	}
	table.visible-xs {
		display: table !important;
	}
	tr.visible-xs {
		display: table-row !important;
	}
	th.visible-xs,
	td.visible-xs {
		display: table-cell !important;
	}
}

@media (max-width: 767px) {
	.visible-xs-block {
		display: block !important;
	}
}

@media (max-width: 767px) {
	.visible-xs-inline {
		display: inline !important;
	}
}

@media (max-width: 767px) {
	.visible-xs-inline-block {
		display: inline-block !important;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.visible-sm {
		display: block !important;
	}
	table.visible-sm {
		display: table !important;
	}
	tr.visible-sm {
		display: table-row !important;
	}
	th.visible-sm,
	td.visible-sm {
		display: table-cell !important;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.visible-sm-block {
		display: block !important;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.visible-sm-inline {
		display: inline !important;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.visible-sm-inline-block {
		display: inline-block !important;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	.visible-md {
		display: block !important;
	}
	table.visible-md {
		display: table !important;
	}
	tr.visible-md {
		display: table-row !important;
	}
	th.visible-md,
	td.visible-md {
		display: table-cell !important;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	.visible-md-block {
		display: block !important;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	.visible-md-inline {
		display: inline !important;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	.visible-md-inline-block {
		display: inline-block !important;
	}
}

@media (min-width: 1200px) {
	.visible-lg {
		display: block !important;
	}
	table.visible-lg {
		display: table !important;
	}
	tr.visible-lg {
		display: table-row !important;
	}
	th.visible-lg,
	td.visible-lg {
		display: table-cell !important;
	}
}

@media (min-width: 1200px) {
	.visible-lg-block {
		display: block !important;
	}
}

@media (min-width: 1200px) {
	.visible-lg-inline {
		display: inline !important;
	}
}

@media (min-width: 1200px) {
	.visible-lg-inline-block {
		display: inline-block !important;
	}
}

@media (max-width: 767px) {
	.hidden-xs {
		display: none !important;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.hidden-sm {
		display: none !important;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	.hidden-md {
		display: none !important;
	}
}

@media (min-width: 1200px) {
	.hidden-lg {
		display: none !important;
	}
}

.visible-print {
	display: none !important;
}

@media print {
	.visible-print {
		display: block !important;
	}
	table.visible-print {
		display: table !important;
	}
	tr.visible-print {
		display: table-row !important;
	}
	th.visible-print,
	td.visible-print {
		display: table-cell !important;
	}
}

.visible-print-block {
	display: none !important;
}

@media print {
	.visible-print-block {
		display: block !important;
	}
}

.visible-print-inline {
	display: none !important;
}

@media print {
	.visible-print-inline {
		display: inline !important;
	}
}

.visible-print-inline-block {
	display: none !important;
}

@media print {
	.visible-print-inline-block {
		display: inline-block !important;
	}
}

@media print {
	.hidden-print {
		display: none !important;
	}
}

.hidden-xs-up {
	display: none !important;
}

@media (max-width: 543px) {
	.hidden-xs-down {
		display: none !important;
	}
}

@media (min-width: 544px) {
	.hidden-sm-up {
		display: none !important;
	}
}

@media (max-width: 767px) {
	.hidden-sm-down {
		display: none !important;
	}
}

@media (min-width: 768px) {
	.hidden-md-up {
		display: none !important;
	}
}

@media (max-width: 991px) {
	.hidden-md-down {
		display: none !important;
	}
}

@media (min-width: 992px) {
	.hidden-lg-up {
		display: none !important;
	}
}

@media (max-width: 1199px) {
	.hidden-lg-down {
		display: none !important;
	}
}

@media (min-width: 1200px) {
	.hidden-xl-up {
		display: none !important;
	}
}

.hidden-xl-down {
	display: none !important;
}

.visible-print-block {
	display: none !important;
}

@media print {
	.visible-print-block {
		display: block !important;
	}
}

.visible-print-inline {
	display: none !important;
}

@media print {
	.visible-print-inline {
		display: inline !important;
	}
}

.visible-print-inline-block {
	display: none !important;
}

@media print {
	.visible-print-inline-block {
		display: inline-block !important;
	}
}

@media print {
	.hidden-print {
		display: none !important;
	}
}

.screen-reader-text {
	display: none;
}

.clear:before,
.clear:after {
	content: " ";
	display: table;
}

.clear:after {
	clear: both;
}

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

.alignleft {
	float: left;
}

.alignright {
	float: right;
}

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

figure.wp-caption.alignleft,
img.alignleft {
	margin: 7px 24px 7px 0;
}

figure.wp-caption.alignright,
img.alignright {
	margin: 7px 0 7px 24px;
}

.wp-caption.alignright {
	margin: 7px 0 7px 14px;
}

img.aligncenter,
.wp-caption.aligncenter {
	margin-top: 7px;
	margin-bottom: 7px;
}

.wp-caption {
	max-width: 100%;
	margin-bottom: 24px;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin: 0;
}

.wp-caption.alignright img[class*="wp-image-"],
.wp-caption.alignright .wp-caption-text {
	padding-left: 10px;
	padding-right: 0;
}

.wp-caption-text {
	font-size: 13px;
	font-style: italic;
	margin: 9px 0;
	color: #999;
}

.wp-caption .wp-caption-text {
	padding-right: 10px;
}

@media (max-width: 640px) {
	.amy-main-content .amy-section[class*="vc_custom"] {
		padding-top: 30px !important;
		padding-bottom: 30px !important;
	}
}

@media (max-width: 640px) {
	.col-why-choose .vc_column-inner {
		padding-left: 15px !important;
		padding-right: 15px !important;
		padding-top: 30px !important;
		padding-bottom: 30px !important;
		margin-bottom: 0 !important;
	}
}

.amy-section .custom.tparrows {
	width: 54px;
	height: 54px;
	background: transparent;
	border-radius: 50%;
	border: 2px solid #fff;
}

.amy-section .custom.tparrows:hover {
	background: #fff;
	color: #fff;
}

.amy-section .custom.tparrows:hover:before {
	color: #9ac100;
}

.amy-section .custom.tparrows:before {
	line-height: 51px;
	font-weight: bold;
}

.amy-inner {
	position: relative;
	width: 100%;
	z-index: 9999;
}

.amy-inner:before,
.amy-inner:after {
	content: " ";
	display: table;
}

.amy-inner:after {
	clear: both;
}

.no-padding {
	padding-top: 0;
	padding-bottom: 0;
}

.xs-padding {
	padding-top: 10px;
	padding-bottom: 10px;
}

.sm-padding {
	padding-top: 20px;
	padding-bottom: 20px;
}

.md-padding {
	padding-top: 40px;
	padding-bottom: 40px;
}

.lg-padding {
	padding-top: 80px;
	padding-bottom: 80px;
}

.xl-padding {
	padding-top: 160px;
	padding-bottom: 160px;
}

.no-margin {
	margin-top: 0;
	margin-bottom: 0;
}

.xs-margin {
	margin-top: 10px;
	margin-bottom: 10px;
}

.sm-margin {
	margin-top: 20px;
	margin-bottom: 20px;
}

.md-margin {
	margin-top: 40px;
	margin-bottom: 40px;
}

.lg-margin {
	margin-top: 80px;
	margin-bottom: 80px;
}

.xl-margin {
	margin-top: 160px;
	margin-bottom: 160px;
}

.wpb_revslider_element {
	margin-bottom: 0 !important;
}

.amy-section-curved {
	position: relative;
}

.amy-section-curved:after {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	background: url(../images/curved-bg.png) no-repeat bottom center;
	content: "";
	height: 30px;
}

.amy-social-icons a {
	font-size: 13px;
	display: inline-block;
	color: #d5d5d5;
	border: 1px solid #d5d5d5;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	vertical-align: middle;
}

.amy-social-icons a:hover {
	color: #fff;
	background: #9ac100;
	border-color: #fff;
}

.amy-list,
.widget_categories ul,
.widget_archive ul,
.widget_pages ul,
.widget_meta ul,
.widget_nav_menu ul,
.widget_recent_entries,
.amy-list ul,
.widget_categories ul ul,
.widget_archive ul ul,
.widget_pages ul ul,
.widget_meta ul ul,
.widget_nav_menu ul ul,
.widget_recent_entries ul,
.amy-list-with-icon,
.amy-list-with-icon ul,
.amy-list-with-image,
.amy-list-with-image ul {
	list-style: none;
	padding: 0;
}

.amy-list li,
.widget_categories ul li,
.widget_archive ul li,
.widget_pages ul li,
.widget_meta ul li,
.widget_nav_menu ul li,
.widget_recent_entries li,
.amy-list-with-icon li,
.amy-list-with-image li {
	padding-left: 15px;
	margin-bottom: 10px;
}

.amy-list li:before,
.widget_categories ul li:before,
.widget_archive ul li:before,
.widget_pages ul li:before,
.widget_meta ul li:before,
.widget_nav_menu ul li:before,
.widget_recent_entries li:before,
.amy-list-with-icon li:before,
.amy-list-with-image li:before {
	position: absolute;
	left: 0;
	content: '•';
	color: #fda901;
}

.amy-list li:hover:before,
.widget_categories ul li:hover:before,
.widget_archive ul li:hover:before,
.widget_pages ul li:hover:before,
.widget_meta ul li:hover:before,
.widget_nav_menu ul li:hover:before,
.widget_recent_entries li:hover:before,
.amy-list-with-icon li:hover:before,
.amy-list-with-image li:hover:before {
	color: #9ac100;
}

ol.amy-list,
ol.widget_recent_entries {
	counter-reset: li;
}

ol.amy-list li,
ol.widget_recent_entries li {
	padding-left: 25px;
}

ol.amy-list li:before,
ol.widget_recent_entries li:before {
	content: counter(li, decimal-leading-zero);
	counter-increment: li;
}

.amy-list-with-icon li:before,
.amy-list-with-image li:before {
	content: "";
}

.amy-list-with-icon li {
	padding-left: 20px;
}

.amy-list-with-icon li a {
	margin-left: 10px;
}

.amy-list-with-icon li i.fa {
	color: #fda901;
	position: absolute;
	left: 0;
	font-size: 14px;
	line-height: 1.5;
}

.amy-list-with-image li {
	position: relative;
	min-height: 30px;
	padding-left: 50px;
	margin-bottom: 10px;
}

.amy-list-with-image li a {
	display: block;
}

.amy-list-with-image li a img {
	position: absolute;
	left: 0;
	top: 0;
	max-height: 100%;
	max-width: 30px;
}

@keyframes amyFadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes amyFadeOut {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}

.amy-fade-in {
	animation: amyFadeIn ease-in 0.3s;
}

.amy-fade-out {
	opacity: 0;
	animation: amyFadeOut ease-out 0.5s;
}

.text-left {
	text-align: left !important;
}

.text-white {
	color: #fff;
}

.bg-sticky-header {
	position: relative;
}

.bg-sticky-header:before {
	content: '';
	width: 100%;
	height: 280px;
	background: url("../images/bg-stiky.png") repeat-x center;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

@media (max-width: 992px) {
	.bg-sticky-header:before {
		content: none;
	}
}

@media (max-width: 640px) {
	.amy-organic-custom-content .title-first {
		font-size: 26px !important;
	}
	.amy-organic-custom-content .title-last {
		font-size: 26px !important;
	}
	.amy-organic-heading h3 {
		font-size: 26px !important;
	}
	.amy-shortcode-product .amy-shortcode-title {
		font-size: 26px !important;
	}
	.amy-productcountdown .product-item .product-title a {
		font-size: 22px !important;
	}
	.amy-organic-blog.layout3 .entry-title {
		font-size: 18px !important;
	}
	.amy-testimonials.slide {
		margin-bottom: 0;
		padding-bottom: 0;
	}
	.aio-icon-component[class*="vc_custom"] {
		padding: 0 !important;
		margin: auto auto 20px auto !important;
	}
	.amy-organic-blog .entry-thumb img {
		width: 100%;
	}
	.amy-organic-heading {
		margin-bottom: 30px;
	}
	.amy-section .vc_column-inner[class*="vc_custom"] {
		margin-bottom: 20px;
	}
}

/**
 * ============================================================================
 * 03. LAYOUT
 * ============================================================================
 */

/**
 * --------------------------------------------------------
 * 3.1. TOP BAR
 * --------------------------------------------------------
 */

.has-topbar #amy-site-logo {
	margin-top: -35px;
}

@media (max-width: 992px) {
	.has-topbar #amy-site-logo {
		margin-top: 0 !important;
	}
}

#amy-top-bar {
	font-size: 13px;
	line-height: 36px;
	color: #b8b8b8;
	padding-top: 2px;
	width: 100%;
	z-index: 99999;
}

#amy-top-bar .amy-top-bar-left {
	float: left;
}

#amy-top-bar .amy-top-bar-right {
	float: right;
}

#amy-top-bar .amy-top-bar-float.amy-top-bar-left,
#amy-top-bar .amy-top-bar-float.amy-top-bar-right {
	float: none;
	position: absolute;
	z-index: 2;
}

#amy-top-bar .amy-top-bar-float .amy-top-bar-left {
	left: 0;
}

#amy-top-bar .amy-top-bar-float .amy-top-bar-right {
	right: 0;
}

#amy-top-bar .amy-top-bar-float .amy-top-bar-right .amy-module-login .box-user a {
	border-right: 1px solid #d3d3d3;
}

#amy-top-bar .amy-inner .amy-cart {
	float: right;
}

#amy-top-bar .amy-inner .amy-cart .amy-organic-cart .cart-count {
	top: -3px;
}

#amy-top-bar .amy-inner .amy-cart:hover .amy-organic-cart-content {
	display: block;
}

#amy-top-bar .amy-module-social .amy-social-list {
	clear: both;
}

#amy-top-bar .amy-module-social .amy-social-list li {
	float: left;
	list-style: none;
	margin-right: 20px;
	font-size: 15px;
}

.box-phone {
	font-family: Dosis, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 16px;
	color: #999;
}

.box-phone .fa {
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	background: #9ac100;
	color: #fff;
	border-radius: 50%;
	margin-right: 3px;
}

.amy-module {
	float: left;
	padding-left: 10px;
	padding-right: 10px;
	position: relative;
}

.amy-module:first-child {
	padding-left: 0;
}

.amy-module:last-child {
	padding-right: 0;
}

.amy-module:after {
	background: #d3d3d3;
	position: absolute;
	content: "";
	right: 0;
	width: 1px;
	height: 12px;
	top: 12px;
}

.amy-module:last-child:after {
	width: 0;
}

.amy-module .amy-top-module-icon {
	margin-right: 5px;
}

.amy-module a {
	color: #b8b8b8;
}

.amy-module a:hover,
.amy-module a:active,
.amy-module a:focus {
	color: #9ac100;
}

.amy-module-login .box-user span {
	padding: 0 10px;
}

.amy-module-login .box-user a {
	padding: 0 10px;
}

.amy-module-login .box-user a:nth-child(2) {
	border-left: 1px solid #d3d3d3;
}

.amy-module-login .box-user a .fa {
	margin-right: 3px;
	display: none;
}

.amy-top-modal-trigger:after {
	content: "";
	pointer-events: none;
	position: absolute;
	left: 50%;
	bottom: -10px;
	width: 0;
	height: 0;
	margin-left: -4px;
	border: 5px solid #fff;
	border-color: #fff #fff transparent transparent;
	transform-origin: 0 0;
	transform: rotate(-45deg);
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.125);
	opacity: 0;
	visibility: hidden;
}

.amy-top-modal:hover .amy-top-modal-trigger:not([data-trigger-event=click]):after,
.amy-opened .amy-top-modal-trigger:after {
	opacity: 1;
	visibility: visible;
}

.amy-top-modal-content {
	display: none;
	background-color: #fff;
	color: #666;
	line-height: 1.5;
	padding: 15px;
	width: 300px;
	position: absolute;
	left: -30px;
	z-index: 10000;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.125);
}

.amy-top-modal-content .search-form {
	position: relative;
}

.amy-top-modal-content .search-form input {
	padding-left: 15px;
	padding-right: 35px;
	background: transparent;
	border: none;
}

.amy-top-modal-content .search-form button {
	font-size: 16px;
	color: #e1e1e1;
	background: none;
	border: none;
	padding: 7px;
	margin: 0;
	position: absolute;
	right: 10px;
	top: 0;
}

.amy-top-modal-content .search-form button:hover {
	color: #9ac100;
}

/**
 * --------------------------------------------------------
 * 3.2. HEADER
 * --------------------------------------------------------
 */

#masthead {
	box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1);
}

.site-header.home5 {
	background-color: rgba(255, 255, 255, 0.45);
}

.site-header.home5 #amy-site-nav>ul>li>.amy-link {
	line-height: 60px !important;
}

.site-header.home5 .amy-inner #amy-site-nav #menu-mainnav-left {
	padding-top: 30px;
}

.site-header.home5 .amy-inner #amy-site-nav #menu-mainnav-right {
	padding-top: 30px;
}

.site-header .amy-inner {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-align: center !important;
	align-items: center !important;
}

.site-header .amy-inner #amy-site-logo {
	-ms-flex-preferred-size: 0;
	flex-basis: 0;
	-ms-flex-positive: 1;
	flex-grow: 1;
	max-width: 100%;
}

.site-header .amy-inner #amy-site-nav {
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: auto;
	max-width: none;
}

.site-header .amy-inner .amy-header-button {
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: auto;
	max-width: none;
	-ms-flex-order: 13;
	order: 13;
	margin-top: -15px;
	text-align: right;
}

.logo-left-menu-center .site-header .amy-inner #amy-site-logo {
	-ms-flex-preferred-size: 0;
	flex-basis: 0;
	-ms-flex-positive: 1;
	flex-grow: 1;
	max-width: 100%;
}

.logo-left-menu-center .site-header .amy-inner #amy-site-nav {
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: auto;
	max-width: none;
}

.logo-left-menu-center .site-header .amy-inner .amy-header-button {
	-ms-flex-preferred-size: 0;
	flex-basis: 0;
	-ms-flex-positive: 1;
	flex-grow: 1;
	max-width: 100%;
	margin-left: 0;
}

.logo-left-menu-center .site-header .amy-inner .amy-header-button>div.amy-cart {
	float: none;
}

.logo-left-menu-center .site-header .amy-inner .amy-header-button>div.amy-navbar {
	float: right;
	margin-top: 18px;
}

.amy-middle-logo .site-header .amy-inner {
	display: block;
}

.amy-middle-logo .site-header .amy-inner #amy-site-nav {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-align: center !important;
	align-items: center !important;
}

.amy-middle-logo .site-header .amy-inner #amy-site-nav #menu-mainnav-left {
	-ms-flex-preferred-size: 0;
	flex-basis: 0;
	-ms-flex-positive: 1;
	flex-grow: 1;
	max-width: 100%;
	text-align: right;
}

.amy-middle-logo .site-header .amy-inner #amy-site-nav #amy-site-logo {
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: auto;
	max-width: none;
	padding: 0 80px;
}

@media (max-width: 1200px) {
	.amy-middle-logo .site-header .amy-inner #amy-site-nav #amy-site-logo {
		padding: 0 40px;
	}
}

@media (max-width: 992px) {
	.amy-middle-logo .site-header .amy-inner #amy-site-nav #amy-site-logo {
		padding: 0;
	}
}

.amy-middle-logo .site-header .amy-inner #amy-site-nav #menu-mainnav-right {
	-ms-flex-preferred-size: 0;
	flex-basis: 0;
	-ms-flex-positive: 1;
	flex-grow: 1;
	max-width: 100%;
	text-align: left;
}

.amy-left-logo .amy-header-button .amy-navbar {
	margin-top: 19px;
}

.amy-left-logo #amy-site-logo {
	float: left;
}

.amy-middle-logo #amy-site-logo {
	display: inline-block;
}

.amy-center-logo #amy-site-logo {
	text-align: center;
}

.amy-left-logo.amy-bottom-menu #amy-site-logo {
	text-align: left;
	float: none;
}

#amy-site-logo h1 {
	margin: 0;
}

#amy-site-logo a {
	color: #9ac100;
	display: inline-block;
}

@media (max-width: 640px) {
	#amy-site-logo a {
		max-width: 100px;
	}
}

#amy-site-logo .amy-logo2x {
	display: none;
}

.amy-float-menu #amy-site-nav {
	float: right;
	margin-top: 0;
}

.amy-middle-logo #amy-site-nav,
.amy-center-menu #amy-site-nav {
	text-align: center;
}

.amy-center-menu #amy-site-nav>ul {
	display: inline-block;
	margin: 0 auto;
	vertical-align: top;
}

#amy-site-nav .amy-primary-menu-left,
#amy-site-nav .amy-primary-menu-right {
	margin-top: 0;
}

#amy-site-nav .amy-primary-menu-left {
	float: left;
}

#amy-site-nav .amy-primary-menu-right {
	float: right;
}

#amy-site-nav ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

#amy-site-nav ul li {
	text-align: left;
	position: relative;
	margin: 0;
}

#amy-site-nav ul li ul {
	display: none;
	position: absolute;
	z-index: 300;
	top: 100%;
	width: 250px;
	background-color: #fff;
	padding: 5px 15px;
	box-shadow: 0 2px 6px 2px rgba(0, 0, 0, 0.07);
}

#amy-site-nav ul li ul li .amy-link {
	font-size: 14px;
	display: block;
	position: relative;
	padding: 12px;
	color: #575757;
	border-top: 1px dotted #9ac100;
	transition: all 0.3s;
}

#amy-site-nav ul li ul li .amy-link:hover {
	color: #9ac100;
	text-decoration: none;
}

#amy-site-nav ul li ul li .amy-link>i {
	margin-right: 5px;
}

#amy-site-nav ul li ul li:first-child>.amy-link {
	border-top: none;
}

#amy-site-nav ul li ul ul {
	top: 0;
	left: 100%;
}

#amy-site-nav>ul:before,
#amy-site-nav>ul:after {
	content: " ";
	display: table;
}

#amy-site-nav>ul:after {
	clear: both;
}

#amy-site-nav>ul>li {
	float: left;
}

#amy-site-nav>ul>li.menu-item-has-children .sub-menu>li.menu-item-has-children>a {
	position: relative;
}

#amy-site-nav>ul>li.menu-item-has-children .sub-menu>li.menu-item-has-children>a:after {
	content: "\f0da";
	display: inline-block;
	font: normal normal normal 12px/1 FontAwesome;
	position: absolute;
	top: 17px;
	right: 0px;
}

#amy-site-nav>ul>li>.amy-link {
	font-family: Dosis, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 17px;
	text-transform: uppercase;
	font-weight: 700;
	color: #575757;
	display: block;
	position: relative;
	padding-left: 20px;
	padding-right: 20px;
	line-height: 100px;
}

.amy-bottom-menu #amy-site-nav>ul>li>.amy-link,
.amy-center-menu #amy-site-nav>ul>li>.amy-link {
	line-height: 50px;
}

.amy-top-bar-right-float #amy-site-nav>ul>li>.amy-link {
	line-height: 64px;
}

#amy-site-nav>ul>li>.amy-link:hover,
#amy-site-nav>ul>li>.amy-link:focus {
	color: #9ac100;
	text-decoration: none;
}

#amy-site-nav>ul>li>.amy-link:before {
	background: #9ac100;
	position: absolute;
	content: "";
	right: -1px;
	top: calc(50% - 1.5px);
	width: 3px;
	height: 3px;
	border-radius: 3px;
}

.amy-bottom-menu #amy-site-nav>ul>li>.amy-link:before,
.amy-center-menu #amy-site-nav>ul>li>.amy-link:before {
	top: 23.5px;
}

.amy-top-bar-right-float #amy-site-nav>ul>li>.amy-link:before {
	top: 30.5px;
}

#amy-site-nav>ul>li>.amy-link>i {
	margin-right: 5px;
}

#amy-site-nav>ul>li:first-child>.amy-link {
	padding-left: 0;
}

#amy-site-nav>ul>li:last-child>.amy-link {
	padding-right: 0;
}

#amy-site-nav>ul>li:last-child>.amy-link:before {
	content: none;
}

#amy-site-nav>ul>li.current-menu-ancestor>.amy-link,
#amy-site-nav>ul>li.current-menu-item>.amy-link {
	color: #9ac100;
}

#amy-site-nav>ul>li>ul {
	border-top: 2px solid #9ac100;
	margin-top: -2px;
	padding-top: 10px;
	padding-bottom: 10px;
}

#amy-site-nav>ul>li>ul>li:first-child>.amy-link {
	border-top: none;
}

#amy-site-nav>ul>li.menu-item-has-children>a:after {
	bottom: 2px;
	left: 49%;
	border: solid transparent;
	content: "";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-bottom-color: #9ac100;
	border-width: 4px;
	margin-left: -4px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s, visibility 0.3s;
}

#amy-site-nav>ul>li:hover>a:after {
	opacity: 1;
	visibility: visible;
	transform: none;
}

#amy-site-nav .amy-menu-cart:last-child a,
#amy-site-nav .amy-menu-search:last-child a {
	padding-right: 0;
}

#amy-site-nav .amy-mega-menu {
	position: inherit;
}

#amy-site-nav .amy-mega-menu>ul {
	width: 100%;
	left: 0;
}

#amy-site-nav .amy-mega-menu>ul>li {
	float: left !important;
	padding: 0 !important;
}

#amy-site-nav .amy-mega-menu>ul>li:last-child {
	border: none;
}

#amy-site-nav .amy-mega-menu>ul>li:last-child a {
	border-right: none !important;
}

#amy-site-nav .amy-mega-menu>ul>li>.amy-link {
	border-top: none;
	font-weight: 700;
	font-size: 16px;
}

#amy-site-nav .amy-mega-menu>ul>li .amy-title {
	font-weight: 700;
	text-transform: uppercase;
	padding-top: 17px;
	padding-bottom: 15px;
	border-top: none;
	color: #555555;
	background-color: #f5f5f5;
}

#amy-site-nav .amy-mega-menu>ul>li .amy-title:hover {
	color: inherit;
}

#amy-site-nav .amy-mega-menu>ul>li .amy-title:after {
	display: none;
}

#amy-site-nav .amy-mega-menu>ul>li ul {
	clear: both;
	display: block !important;
	position: relative !important;
	left: 0 !important;
	opacity: 1 !important;
	width: 100% !important;
	box-shadow: none !important;
}

#amy-site-nav .amy-custom,
#amy-site-nav .amy-natural {
	position: relative;
}

#amy-site-nav .amy-col-2>ul {
	width: 400px;
}

#amy-site-nav .amy-col-3>ul {
	width: 525px;
}

#amy-site-nav .amy-col-4>ul {
	width: 600px;
}

#amy-site-nav .amy-col-5>ul {
	width: 500px;
}

#amy-site-nav .amy-col-6>ul {
	width: 600px;
}

#amy-site-nav .amy-right>ul {
	left: auto !important;
	right: 0;
}

#amy-site-nav .amy-label {
	position: relative;
	top: -5px;
	left: 3px;
	padding: 1px 4px;
	font-size: 9px;
	text-transform: uppercase;
}

#amy-site-nav .amy-column-title {
	cursor: inherit;
}

#amy-site-nav .amy-content {
	display: block;
	font-size: 11px;
	padding-top: 5px;
	opacity: 0.7;
	filter: alpha(opacity=70);
}

#amy-site-nav .amy-full-content {
	margin: 10px;
}

#amy-site-nav .current-menu-ancestor>.amy-link,
#amy-site-nav .current-menu-item>.amy-link {
	color: #9ac100;
}

.header-middle.amy-section-curved {
	z-index: 999;
}

.header-middle.amy-section-curved:after {
	background-color: transparent;
	background-position: center;
	bottom: -23px;
}

.header-middle #menu-mainnav-left>li {
	float: none;
	display: inline-block;
}

.header-middle #menu-mainnav-right>li {
	float: none;
	display: inline-block;
}

#amy-menu-toggle {
	display: none;
	position: absolute;
	top: 50%;
	margin-top: -10px;
	padding: 10px;
	right: 5px;
	cursor: pointer;
}

#amy-menu-toggle a {
	display: block;
	position: relative;
	margin: 0;
	padding: 0px;
	font-size: 0;
	text-indent: -9999em;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	box-shadow: none;
	border-radius: 0;
	border: none;
	width: 20px;
	transition: background 0.3s;
}

#amy-menu-toggle a:focus {
	outline: none;
}

#amy-menu-toggle a span,
#amy-menu-toggle a span:before,
#amy-menu-toggle a span:after {
	display: block;
	width: 100%;
	height: 3px;
	margin: 2px auto;
	background-color: #555;
	transition: all 0.1s;
}

#amy-menu-toggle a span:before,
#amy-menu-toggle a span:after {
	position: absolute;
	content: "";
}

#amy-menu-toggle a span:before {
	margin-top: -5px;
}

#amy-menu-toggle a span:after {
	margin-top: 5px;
}

#amy-menu-toggle.amy-menu-toggle-open a span {
	background: rgba(0, 0, 0, 0);
}

#amy-menu-toggle.amy-menu-toggle-open a span:before {
	transform: rotate(45deg) translate(3px, 3px);
}

#amy-menu-toggle.amy-menu-toggle-open a span:after {
	transform: rotate(-45deg) translate(4px, -4px);
}

#amy-navigation-mobile {
	display: none;
	background-color: #222;
}

#amy-navigation-mobile ul+ul {
	padding-top: 0;
	margin-top: -20px;
}

#amy-navigation-mobile ul+ul>li:first-child {
	border-top: none;
}

#amy-navigation-mobile .amy-dropdown-plus {
	position: absolute;
	top: 0;
	right: 0;
	cursor: pointer;
	background-color: #222;
	transition: all 0.2s;
}

#amy-navigation-mobile .amy-dropdown-plus:hover {
	background-color: #1a1a1a;
}

#amy-navigation-mobile .amy-dropdown-plus .fa {
	display: block;
	text-align: center;
	font-size: 13px;
	width: 48px;
	height: 48px;
	line-height: 48px;
	color: #555;
	transition: all 0.2s;
}

#amy-navigation-mobile .amy-dropdown-times .fa {
	color: #fff;
	transform: rotate(45deg);
}

#amy-navigation-mobile .current-menu-ancestor>a,
#amy-navigation-mobile .current-menu-item>a {
	color: #fff;
}

#amy-navigation-mobile a {
	transition: all 0.2s;
	text-decoration: none;
}

#amy-navigation-mobile ul {
	margin: 0;
	padding: 20px 0;
	list-style: none;
}

#amy-navigation-mobile ul ul {
	position: relative;
	display: none;
	padding: 0;
	margin-left: 0;
}

#amy-navigation-mobile ul ul:before {
	content: "";
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 5px solid #333;
	position: absolute;
	top: 5px;
	left: 30px;
}

#amy-navigation-mobile ul ul li {
	border-left: none;
	border-right: none;
}

#amy-navigation-mobile ul ul li:first-child {
	border-top-width: 5px;
	border-top-color: #333;
}

#amy-navigation-mobile ul ul li:last-child {
	border-bottom: none;
}

#amy-navigation-mobile ul ul li a {
	padding-left: 30px;
}

#amy-navigation-mobile ul li {
	position: relative;
	border: 1px solid #333;
	border-bottom: none;
	margin: 0;
}

#amy-navigation-mobile ul li:last-child {
	border-bottom: 1px solid #333;
}

#amy-navigation-mobile ul li a {
	display: block;
	font-size: 13px;
	padding: 15px;
	color: #999;
}

#amy-navigation-mobile ul li a:hover {
	color: #fff;
}

#amy-navigation-mobile ul li.menu-item-has-children>.amy-dropdown-plus {
	display: block;
}

#amy-navigation-mobile ul li.menu-item-has-children>a {
	border-right: 1px solid #333;
	margin-right: 50px;
}

#amy-navigation-mobile .amy-fancy-mobile-menu {
	padding: 20px 0;
}

#amy-navigation-mobile .amy-fancy-mobile-menu ul {
	padding-top: 0;
	padding-bottom: 0;
}

.header-sticky #masthead {
	position: fixed;
	z-index: 10;
	right: 0;
	left: 0;
	top: 0;
}

@media (max-width: 992px) {
	.header-sticky #masthead {
		position: inherit;
	}
}

.header-sticky #masthead.headroom--top {
	box-shadow: none;
}

.amy-middle-logo .headroom .amy-inner #amy-site-nav {
	margin-top: 0;
}

.amy-middle-logo .headroom .amy-inner .amy-header-button {
	margin-top: -56px;
}

@media (max-width: 992px) {
	.amy-middle-logo .headroom .amy-inner .amy-header-button {
		margin-top: -68px;
	}
}

.amy-middle-logo .headroom .amy-inner .amy-header-button .amy-navbar {
	margin-top: 18px;
}

.headroom {
	transition: transform .25s ease-in-out;
	will-change: transform;
}

.headroom #amy-site-logo a {
	line-height: 90px;
}

.headroom .amy-inner #amy-site-nav {
	margin-top: 20px;
}

.headroom .amy-inner .amy-header-button {
	margin-top: 6px;
}

.headroom--pinned {
	transform: translateY(0%);
}

.headroom--unpinned {
	transform: translateY(-100%);
}

.headroom--pinned.headroom--not-top {
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 1000;
	background: #fff;
}

a:focus {
	outline: none;
}

.amy-header-button {
	text-align: right;
	float: right;
	margin-left: 50px;
}

.amy-header-button>div {
	display: inline-block;
	float: left;
}

.amy-header-button>div:last-child {
	margin-left: 25px;
}

.amy-header-button .amy-top-modal {
	margin-top: -2px;
}

.amy-header-button .amy-cart {
	padding-left: 5px;
}

.amy-organic-cart {
	display: inline-block;
	width: 20px;
	height: 20px;
	background: url("../images/icons/icon-cart.png") no-repeat center;
	text-indent: -9999em;
	position: relative;
	margin-top: 0;
	text-align: center;
	font-size: 0;
}

.amy-organic-cart .cart-count {
	position: absolute;
	display: block;
	width: 16px;
	height: 16px;
	line-height: 16px;
	text-align: center;
	color: #fff;
	top: -11px;
	right: -11px;
	font-size: 11px;
	text-indent: 0;
	background: #9ac100;
	border-radius: 50%;
}

#amy-navbar-toggle {
	padding: 2px;
	cursor: pointer;
}

#amy-navbar-toggle a {
	display: block;
	position: relative;
	margin: 0;
	padding: 0px;
	font-size: 0;
	text-indent: -9999em;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	box-shadow: none;
	border-radius: 0;
	border: none;
	width: 20px;
	height: 20px;
	overflow: hidden;
	transition: background 0.3s;
}

#amy-navbar-toggle a:focus {
	outline: none;
}

#amy-navbar-toggle a:hover span {
	left: -200%;
}

#amy-navbar-toggle a:hover span:before {
	left: -200%;
}

#amy-navbar-toggle a:hover span:after {
	left: -200%;
}

#amy-navbar-toggle a span {
	display: block;
	width: 300%;
	height: 3px;
	margin: 2px auto;
	background: rgba(0, 0, 0, 0) linear-gradient(to right, #252525 0%, #252525 33.333%, transparent 33.333%, transparent 66.666%, #fda901 66.666%, #fda901 100%) repeat scroll 0 0;
	position: absolute;
	left: 0;
	top: 3px;
	transition: all 500ms ease 200ms;
}

#amy-navbar-toggle a span:before {
	display: block;
	width: 300%;
	height: 3px;
	margin: 2px auto;
	background: rgba(0, 0, 0, 0) linear-gradient(to right, #252525 0%, #252525 33.333%, transparent 33.333%, transparent 66.666%, #fda901 66.666%, #fda901 100%) repeat scroll 0 0;
	position: absolute;
	left: 0;
	top: 0;
	transition: all 500ms ease 0s;
}

#amy-navbar-toggle a span:after {
	display: block;
	width: 300%;
	height: 3px;
	margin: 2px auto;
	background: rgba(0, 0, 0, 0) linear-gradient(to right, #252525 0%, #252525 33.333%, transparent 33.333%, transparent 66.666%, #fda901 66.666%, #fda901 100%) repeat scroll 0 0;
	position: absolute;
	left: 0;
	top: 0;
	transition: all 500ms ease 400ms;
}

#amy-navbar-toggle a span:before,
#amy-navbar-toggle a span:after {
	position: absolute;
	content: "";
}

#amy-navbar-toggle a span:before {
	margin-top: -5px;
}

#amy-navbar-toggle a span:after {
	margin-top: 5px;
}

#amy-navbar-toggle.amy-navbar-open {
	position: fixed;
	right: 50px;
	top: 55px;
	z-index: 9999;
}

#amy-navbar-toggle.amy-navbar-open a {
	overflow: visible;
}

#amy-navbar-toggle.amy-navbar-open a:hover span,
#amy-navbar-toggle.amy-navbar-open a:hover span:before,
#amy-navbar-toggle.amy-navbar-open a:hover span:after {
	left: 0;
}

#amy-navbar-toggle.amy-navbar-open a span {
	background: rgba(0, 0, 0, 0);
}

#amy-navbar-toggle.amy-navbar-open a span:before {
	transform: rotate(45deg) translate(3px, 3px);
	width: 20px;
	background: #252525;
}

#amy-navbar-toggle.amy-navbar-open a span:after {
	transform: rotate(-45deg) translate(4px, -4px);
	width: 20px;
	background: #252525;
}

.amy-navbar-content {
	background: #fff;
	color: #666;
	overflow-y: scroll;
	position: fixed;
	transition: all 500ms ease-in-out 0s;
	transform: translateX(100%);
	right: 0;
	top: 0;
	width: 390px;
	z-index: 9998;
	padding: 110px 50px 50px 50px;
	min-height: 100vh;
	text-align: left;
}

.amy-navbar-content.open {
	transform: translateX(0px);
}

.amy-navbar-content .amy-menu {
	padding-bottom: 20px;
	border-bottom: 1px solid #e9e9e9;
}

.amy-navbar-content .amy-menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.amy-navbar-content .amy-menu ul li {
	padding: 0 15px;
	border-left: 2px solid #9ac100;
	line-height: 15px;
	margin-bottom: 15px;
}

.amy-navbar-content .amy-module {
	float: left;
	width: 100%;
	margin-bottom: 20px;
}

.amy-navbar-content .amy-module-social ul.amy-social-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.amy-navbar-content .amy-module-social ul.amy-social-list li {
	display: inline-block;
	float: left;
	margin-right: 20px;
}

.amy-header-button {
	position: relative;
}

.amy-cart {
	height: 44px;
	width: 44px;
	text-align: center;
	cursor: pointer;
	position: relative;
}

.amy-cart:hover .amy-organic-cart-content {
	display: block;
}

.amy-cart .amy-organic-cart-content {
	display: none;
	position: absolute;
	right: 0;
	top: 44px;
	width: 310px;
	background: #fff;
	z-index: 99;
	box-shadow: 0 3px 6px #ccc;
	border-top: 2px solid #9ac100;
	padding: 20px;
	z-index: 9999;
}

@media (max-width: 480px) {
	.amy-cart .amy-organic-cart-content {
		right: -100%;
	}
}

@media (max-width: 480px) {
	.amy-cart .amy-organic-cart-content {
		right: -182%;
	}
}

.amy-cart .amy-organic-cart-content:after {
	-moz-border-bottom-colors: none;
	-moz-border-left-colors: none;
	-moz-border-right-colors: none;
	-moz-border-top-colors: none;
	border-color: transparent transparent #9ac100;
	border-image: none;
	border-style: solid;
	border-width: 4px;
	content: "";
	height: 17px;
	margin-left: 0;
	opacity: 1;
	pointer-events: none;
	position: absolute;
	right: 16px;
	top: -19px;
	transition: opacity 0.3s ease 0s, visibility 0.3s ease 0s;
	visibility: visible;
	width: 9px;
}

@media (max-width: 480px) {
	.amy-cart .amy-organic-cart-content:after {
		content: none;
	}
}

.amy-cart .amy-organic-cart-content .total {
	text-align: center;
}

.amy-cart .amy-organic-cart-content .total .amount {
	font-size: 18px;
	color: #fda901;
	font-family: Dosis;
	font-weight: 600;
}

.amy-cart .amy-organic-cart-content .buttons {
	text-align: center;
	margin-bottom: 0px;
}

.amy-cart .amy-organic-cart-content .buttons .button,
.amy-cart .amy-organic-cart-content .buttons .widget_tag_cloud .tagcloud a,
.widget_tag_cloud .tagcloud .amy-cart .amy-organic-cart-content .buttons a {
	padding: 10px 20px !important;
	border-color: #9ac100;
	margin: 0 3px;
}

.amy-cart .amy-organic-cart-content .buttons .button:hover,
.amy-cart .amy-organic-cart-content .buttons .widget_tag_cloud .tagcloud a:hover,
.widget_tag_cloud .tagcloud .amy-cart .amy-organic-cart-content .buttons a:hover {
	background: #9ac100;
	color: #fff;
}

.amy-cart .amy-organic-cart-content ul {
	list-style: none;
	position: relative;
	border-bottom: 1px dotted #9ac100;
	display: block;
	width: 100%;
	margin-bottom: 15px;
	padding: 0;
}

.amy-cart .amy-organic-cart-content ul li {
	position: relative;
	margin-bottom: 20px;
	text-align: left;
}

.amy-cart .amy-organic-cart-content ul li:before,
.amy-cart .amy-organic-cart-content ul li:after {
	content: " ";
	display: table;
}

.amy-cart .amy-organic-cart-content ul li:after {
	clear: both;
}

.amy-cart .amy-organic-cart-content ul li .remove {
	position: absolute;
	top: 45px;
	right: 0;
	color: red;
	z-index: 99;
	text-align: center;
}

.amy-cart .amy-organic-cart-content ul li a {
	display: block;
	position: relative;
	font-size: 14px;
	font-weight: bold;
	font-family: "ABeeZee", Arial, sans-serif;
	text-transform: uppercase;
	text-align: left;
	color: #333;
}

.amy-cart .amy-organic-cart-content ul li a:hover {
	color: #9ac100;
}

.amy-cart .amy-organic-cart-content ul li a img {
	width: 92px;
	height: 100px;
	overflow: hidden;
	float: left;
	margin-right: 15px;
	border: 2px solid #e9e9e9;
}

.amy-cart .amy-organic-cart-content ul li .quantity .amount {
	font-size: 17px;
	color: #fda901;
	font-family: Dosis;
	font-weight: 600;
}

.header-sticky #page-header {
	margin-top: 90px;
}

@media (max-width: 992px) {
	.header-sticky #page-header {
		margin-top: 0;
	}
}

@media (max-width: 992px) {
	.amy-navbar {
		display: none !important;
	}
	.site-header .amy-inner .amy-header-button {
		margin-right: 50px;
		margin-top: -3px;
	}
}

/**
 * --------------------------------------------------------
 * 3.3. PAGE HEADER
 * --------------------------------------------------------
 */

#page-header {
	background-color: #9ac100;
	background-repeat: no-repeat;
	background-position: center center;
	text-align: center;
	overflow-wrap: break-word;
}

#page-header h1 {
	color: #fff;
	margin: 0;
}

#page-header .amy-breadcrumb {
	margin-top: 15px;
}

#page-header .amy-breadcrumb,
#page-header .amy-breadcrumb a {
	color: #fff;
}

#page-header .amy-breadcrumb a:hover,
#page-header .amy-breadcrumb a:active,
#page-header .amy-breadcrumb a:focus {
	text-decoration: underline;
}

@media (max-width: 767px) {
	#page-header {
		padding-top: 20px;
		padding-bottom: 20px;
	}
	#page-header h1 {
		font-size: 26px;
		margin-top: 16px;
	}
}

/**
 * --------------------------------------------------------
 * 3.3. FOOTER
 * --------------------------------------------------------
 */

.amy-footer-widgets-before {
	overflow: hidden;
	background-color: #9ac100;
	background-image: url("../images/section-bg.png");
	background-repeat: no-repeat;
	background-position: center;
	background-attachment: fixed;
	background-size: initial;
}

.amy-footer-widgets-before .widget_mc4wp_form_widget {
	position: relative;
	margin-bottom: 0;
	padding: 8px 0 20px 0;
}

.amy-footer-widgets-before .widget_mc4wp_form_widget .mc4wp-form-fields p {
	display: block;
	margin-bottom: 0;
}

.amy-footer-widgets-before .widget_mc4wp_form_widget:before {
	content: url("../images/q2.png");
	position: absolute;
	left: 0;
	top: -89px;
}

@media (max-width: 980px) {
	.amy-footer-widgets-before .widget_mc4wp_form_widget:before {
		content: none;
	}
}

.amy-footer-widgets-before .widget_mc4wp_form_widget:after {
	content: url("../images/q1.png");
	position: absolute;
	right: 0;
	top: -60px;
}

@media (max-width: 980px) {
	.amy-footer-widgets-before .widget_mc4wp_form_widget:after {
		content: none;
	}
}

.amy-footer-widgets-before .widget_mc4wp_form_widget .amy-widget-title h4 {
	font-size: 30px;
	color: #fff;
	text-transform: uppercase;
	text-align: center;
	font-weight: bold;
}

.amy-footer-widgets-before .mc4wp-form-fields {
	display: block;
	position: relative;
	max-width: 450px;
	margin: 0 auto;
	-moz-placeholder-color: #fff;
	-moz-placeholder-font-style: italic;
	-ms-input-placeholder-color: #fff;
	-ms-input-placeholder-font-style: italic;
}

.amy-footer-widgets-before .mc4wp-form-fields label {
	display: none;
}

.amy-footer-widgets-before .mc4wp-form-fields ::-webkit-input-placeholder {
	color: #fff;
	font-style: italic;
}

.amy-footer-widgets-before .mc4wp-form-fields ::-moz-placeholder {
	color: #fff;
	font-style: italic;
}

.amy-footer-widgets-before .mc4wp-form-fields input[type="email"] {
	display: inline-block;
	border-radius: 50px;
	max-width: 450px;
	padding-left: 20px;
	padding-right: 40px;
	height: 44px;
	background: transparent;
	border-color: rgba(255, 255, 255, 0.6);
	box-shadow: none;
}

.amy-footer-widgets-before .mc4wp-form-fields input[type="email"]:focus {
	border-color: #fff;
	box-shadow: none;
}

.amy-footer-widgets-before .mc4wp-form-fields input[type="submit"] {
	position: absolute;
	border: none;
	text-indent: -9999em;
	padding: 0;
	width: 24px;
	height: 24px;
	background: url(../images/icons/newsletter-btn.png) no-repeat;
	top: 9px;
	right: 20px;
	opacity: 0.9;
}

.amy-footer-widgets-before .mc4wp-form-fields input[type="submit"]:hover,
.amy-footer-widgets-before .mc4wp-form-fields input[type="submit"]:active,
.amy-footer-widgets-before .mc4wp-form-fields input[type="submit"]:focus {
	opacity: 1;
}

@media (max-width: 767px) {
	.amy-footer-widgets-before {
		padding-top: 20px;
		padding-bottom: 20px;
	}
}

.amy-footer {
	padding-top: 0px;
}

.amy-footer .amy-footer-left {
	padding-bottom: 20px;
	padding-right: 30px;
	padding-top: 30px;
}

.amy-footer .amy-footer-left .amy-widget-module.about .summary {
	margin-bottom: 20px;
	max-height: 88px;
	overflow: hidden;
}

.amy-footer .amy-footer-left .amy-widget-module.about .footer-logo {
	margin-bottom: 13px;
}

.amy-footer .amy-footer-left .amy-widget-module.contact .fa {
	margin-right: 10px;
}

.amy-footer .amy-footer-left .amy-widget-module.contact div {
	margin-bottom: 10px;
}

.amy-footer .amy-footer-left .amy-widget:last-of-type {
	margin-bottom: 0;
}

.amy-footer .amy-footer-left .icon-white .vcard .adr {
	background-image: url(../images/icons/paper-airplane-white.png);
}

.amy-footer .amy-footer-left .icon-white .vcard .url {
	background-image: url(../images/icons/globe.png);
}

.amy-footer .amy-footer-left .icon-white .vcard .tel {
	background-image: url(../images/icons/phone-white.png);
	color: #ffffff;
	-webkit-text-fill-color: #ffffff;
}

.amy-footer .amy-footer-left .icon-white .vcard .email {
	background-image: url(../images/icons/email-white.png);
}

.amy-footer .amy-footer-left .vcard>div {
	margin-bottom: 10px;
}

.amy-footer .amy-footer-left .vcard .adr,
.amy-footer .amy-footer-left .vcard .url,
.amy-footer .amy-footer-left .vcard .tel,
.amy-footer .amy-footer-left .vcard .email {
	background-repeat: no-repeat;
	background-position: left center;
	position: relative;
	padding-left: 35px;
}

.amy-footer .amy-footer-left .vcard .adr {
	background-image: url(../images/icons/paper-airplane.png);
}

.amy-footer .amy-footer-left .vcard .url {
	background-image: url(../images/icons/globe.png);
}

.amy-footer .amy-footer-left .vcard .url a {
	color: #666;
}

.amy-footer .amy-footer-left .vcard .url a:hover {
	color: #9ac100;
}

.amy-footer .amy-footer-left .vcard .tel {
	background-image: url(../images/icons/phone.png);
}

.amy-footer .amy-footer-left .vcard .email {
	background-image: url(../images/icons/envelop.png);
}

.amy-footer .amy-footer-left .vcard .email a {
	color: #666;
}

.amy-footer .amy-footer-left .vcard .email a:hover {
	color: #9ac100;
}

.amy-footer .amy-social-icons {
	margin-top: 20px;
}

.amy-footer .amy-social-icons a {
	width: 36px;
	height: 36px;
	line-height: 36px;
}

.amy-footer .amy-footer-right {
	padding-left: 30px;
	padding-top: 68px;
	border-left: 1px dotted #bdd759;
	margin-top: -8px;
}

@media (max-width: 768px) {
	.amy-footer .amy-footer-right {
		margin-top: 0;
		padding-top: 0;
	}
}

.amy-footer .amy-footer-right .amy-widget .amy-widget-title h4 {
	margin-bottom: 35px;
}

@media (max-width: 768px) {
	.amy-footer .amy-footer-right .amy-widget .amy-widget-title h4 {
		margin-bottom: 15px;
	}
}

.amy-footer .amy-footer-right .amy-widgets-4 .amy-widget-module {
	margin-bottom: 6px;
}

.amy-footer .amy-footer-right .amy-widgets-4 .amy-widget-module h4.amy-widget-title {
	margin-top: 0;
	color: #9ac100;
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 20px;
	margin-top: 0;
	text-transform: uppercase;
}

.amy-footer .amy-footer-right .amy-list-with-icon li {
	padding-left: 20px;
}

.amy-footer .amy-footer-right .amy-list-with-icon li a {
	color: #999;
}

.amy-footer .amy-footer-right .amy-list-with-icon li a:hover,
.amy-footer .amy-footer-right .amy-list-with-icon li a:active,
.amy-footer .amy-footer-right .amy-list-with-icon li a:focus {
	color: #9ac100;
}

.amy-footer .amy-footer-right .amy-copyright {
	margin-left: -30px;
	padding-left: 30px;
}

.amy-footer .amy-copyright {
	border-top: 1px dotted #bdd759;
	padding-top: 30px;
	padding-bottom: 30px;
}

.amy-footer .amy-copyright p {
	margin-bottom: 0;
}

.amy-footer .instagram-images img {
	margin-bottom: 3px;
}

@media (max-width: 991px) {
	.amy-footer .amy-flex {
		display: block;
	}
	.amy-footer .amy-footer-left {
		border-right: 0;
		padding-right: 0;
	}
	.amy-footer .amy-footer-right {
		padding-left: 15px;
	}
	.amy-footer .amy-copyright .pull-left,
	.amy-footer .amy-copyright .pull-right {
		float: none !important;
		text-align: center;
	}
	.amy-footer .amy-copyright .pull-left p,
	.amy-footer .amy-copyright .pull-right p {
		margin-bottom: 10px;
	}
	.amy-footer .amy-copyright .pull-left .amy-module,
	.amy-footer .amy-copyright .pull-right .amy-module {
		float: none;
		margin-bottom: 10px;
	}
}

/**
 * --------------------------------------------------------
 * 3.4. PAGINATION
 * --------------------------------------------------------
 */

.amy-pagination {
	text-align: center;
	margin-top: 10px;
}

.pagination .page-numbers {
	color: #9ac100;
	border: 2px solid #e1e1e1;
	padding: 8px 14px;
	border-radius: 3px;
	display: inline-block;
}

.pagination .page-numbers.current {
	color: #fff;
	text-decoration: none;
	background: #9ac100;
	border-color: #9ac100;
}

.pagination a.page-numbers:focus {
	text-decoration: none;
}

.pagination a.page-numbers:hover,
.pagination a.page-numbers:active {
	color: #fff;
	text-decoration: none;
	background: #9ac100;
	border-color: #9ac100;
}

.amy-infinite-scroll {
	background: url(../images/loader.gif) no-repeat center center;
	display: inline-block;
	text-indent: -9999em;
}

.amy-prev-next-pagination:before,
.amy-prev-next-pagination:after {
	content: " ";
	display: table;
}

.amy-prev-next-pagination:after {
	clear: both;
}

.amy-prev-next-pagination .amy-prev {
	float: left;
}

.amy-prev-next-pagination .amy-next {
	float: right;
}

/**
 * ============================================================================
 * 03. DEFAULT WORDPRESS WIDGETS
 * ============================================================================
 */

/**
 * --------------------------------------------------------
 * 3.1. BASE
 * --------------------------------------------------------
 */

.footer-logo {
	margin-bottom: 12px;
}

.amy-widget {
	margin-bottom: 40px;
	overflow-wrap: break-word;
}

@media (max-width: 768px) {
	.amy-widget {
		margin-bottom: 20px;
	}
}

.amy-widget .amy-widget-title h4 {
	margin-top: 0;
	font-weight: bold;
	text-transform: uppercase;
	color: #9ac100;
	font-size: 20px;
	margin-bottom: 20px;
}

.amy-dark-bg .amy-widget .amy-widget-title h4 {
	color: #fff;
}

.widget_categories ul li,
.widget_archive ul li,
.widget_pages ul li,
.widget_meta ul li,
.widget_nav_menu ul li,
.widget_recent_entries li {
	color: #d5d5d5;
}

.widget_categories ul li a,
.widget_archive ul li a,
.widget_pages ul li a,
.widget_meta ul li a,
.widget_nav_menu ul li a,
.widget_recent_entries li a {
	color: #666;
}

.widget_categories ul li a:hover,
.widget_archive ul li a:hover,
.widget_pages ul li a:hover,
.widget_meta ul li a:hover,
.widget_nav_menu ul li a:hover,
.widget_recent_entries li a:hover {
	color: #9ac100;
}

.amy-dark-bg .widget_categories ul li,
.amy-dark-bg .widget_archive ul li,
.amy-dark-bg .widget_pages ul li,
.amy-dark-bg .widget_meta ul li,
.amy-dark-bg .widget_nav_menu ul li,
.amy-dark-bg .widget_recent_entries li {
	color: #e6e6e6;
}

.widget_text a,
.widget_rss a {
	color: #9ac100;
}

.amy-dark-bg {
	color: white;
}

.amy-dark-bg a {
	color: #fff;
}

.amy-social-list ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.amy-social-list ul li a {
	color: #666666;
}

.amy-social-list ul li a .fa {
	color: #fda901;
	margin-right: 10px;
	width: 17px;
	display: inline-block;
}

.amy-social-list ul li a:hover {
	color: #9ac100;
}

.amy-social-list ul li a:hover .fa {
	color: #9ac100;
}

@media (max-width: 991px) {
	.sidebar-left {
		margin-bottom: 40px;
	}
	.sidebar-right {
		margin-top: 40px;
	}
}

/**
 * --------------------------------------------------------
 * 3.2. SEARCH
 * --------------------------------------------------------
 */

.widget_search .search-form {
	position: relative;
}

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

.widget_search .search-form button {
	color: #e1e1e1;
	background: none;
	border: none;
	padding: 7px;
	margin: 0;
	position: absolute;
	right: 5px;
	top: 5px;
}

.widget_search .search-form button:hover,
.widget_search .search-form button:focus,
.widget_search .search-form button:active {
	color: #9ac100;
}

/**
 * --------------------------------------------------------
 * 3.3. CALENDAR
 * --------------------------------------------------------
 */

.widget_calendar caption {
	text-align: center;
}

.amy-dark-bg .widget_calendar caption {
	color: #fff;
}

.widget_calendar table {
	font-size: 14px;
	border-top: 1px solid #eee;
}

.widget_calendar table>thead tr>th,
.widget_calendar table>thead tr>td,
.widget_calendar table>tbody tr>th,
.widget_calendar table>tbody tr>td {
	text-align: center;
}

.widget_calendar table>thead>tr>th,
.widget_calendar table>thead>tr>td {
	border-bottom-width: 2px;
}

.widget_calendar table>thead {
	background: #f8f8f8;
}

.amy-dark-bg .widget_calendar table>thead {
	color: #9ac100;
}

.widget_calendar table>tfoot tr>td {
	border: 0;
}

.widget_calendar table tbody a {
	background: #9ac100;
	color: #fff;
	display: block;
	border-radius: 3px;
}

.amy-dark-bg .widget_calendar table tbody a {
	background-color: #f8f8f8;
	color: #9ac100;
}

.widget_calendar table tbody a:hover {
	background: #555;
}

.widget_calendar #next {
	text-align: right;
}

.widget_calendar #prev {
	text-align: left;
}

.widget_calendar #today {
	background-color: #f5f5f5;
}

.amy-dark-bg .widget_calendar #today {
	color: #9ac100;
}

@media (min-width: 991px) and (max-width: 1199px) {
	.widget_calendar table th,
	.widget_calendar table td {
		padding: 6px;
	}
}

/**
 * --------------------------------------------------------
 * 3.4. COMMENTS
 * --------------------------------------------------------
 */

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

.widget_recent_comments ul li {
	font-style: italic;
	color: #999999;
}

.widget_recent_comments ul li:before {
	font-family: FontAwesome;
	content: "\f0e5";
	font-size: 13px;
	margin-right: 7px;
	opacity: 0.7;
}

.amy-dark-bg .widget_recent_comments ul li {
	color: white;
}

.widget_recent_comments ul li a {
	font-style: normal;
}

/**
 * --------------------------------------------------------
 * 3.5. NAV MENU
 * --------------------------------------------------------
 */

.amy-footer-widgets .widget_nav_menu a {
	color: #666;
}

.amy-footer-widgets .widget_nav_menu a:hover {
	opacity: 0.7;
}

.page-sidebar .widget_nav_menu ul,
.page-sidebar .widget_nav_menu ul ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.page-sidebar .widget_nav_menu ul li {
	margin: 0;
	padding: 0;
	border-bottom: 1px solid #f2f2f2;
}

.page-sidebar .widget_nav_menu ul li:before {
	content: none;
}

.page-sidebar .widget_nav_menu ul li a {
	padding: 8px 0;
	display: block;
}

.page-sidebar .widget_nav_menu ul li:last-child {
	border-bottom: 0;
}

.page-sidebar .widget_nav_menu ul li ul.sub-menu {
	padding-left: 20px;
	border-top: 1px solid #f2f2f2;
}

.page-sidebar .widget_nav_menu ul .menu-item-has-children>a:after {
	font-family: FontAwesome;
	content: "\f105";
	position: absolute;
	right: 0;
	color: #cacaca;
}

.page-sidebar .widget_nav_menu ul .menu-item-has-children>a:hover:after {
	color: #9ac100;
}

.page-sidebar .widget_nav_menu ul .current-menu-item>a {
	color: #9ac100;
}

.page-sidebar .widget_nav_menu ul .current-menu-item>a:after {
	transform: rotate(90deg);
}

/**
 * --------------------------------------------------------
 * 3.6. RSS
 * --------------------------------------------------------
 */

.widget_rss .amy-widget-title img {
	margin-bottom: 2px;
}

.widget_rss .rss-date {
	color: #999;
	font-style: italic;
}

.amy-dark-bg .widget_rss .rss-date {
	color: #d5d5d5;
}

.widget_rss .rssSummary {
	margin-top: 5px;
}

/**
 * --------------------------------------------------------
 * 3.7. TAG CLOUD
 * --------------------------------------------------------
 */

.widget_tag_cloud .tagcloud a {
	padding: 5px 12px;
	text-transform: none;
	font-weight: 400;
	font-size: 13px !important;
	border-width: 2px;
	border-color: #eeeeee;
	color: #666;
	font-size: 15px;
	font-family: ABeeZee, "Helvetica Neue", Helvetica, Arial, sans-serif;
	padding: 8px 15px;
	margin-bottom: 6px;
}

.widget_tag_cloud .tagcloud a:hover {
	color: #9ac100;
}

/**
 * ============================================================================
 * 03. DEFAULT WORDPRESS WIDGETS
 * ============================================================================
 */

.sidebar-right {
	padding-left: 30px;
}

@media (max-width: 980px) {
	.sidebar-right {
		padding-left: 0;
	}
}

.sidebar-left {
	padding-right: 30px;
}

@media (max-width: 980px) {
	.sidebar-left {
		padding-right: 0;
	}
}

.entry-meta .entry-cat-links:before,
.entry-meta .entry-featured:before,
.entry-tags:before,
.entry-meta a:before {
	font-size: 13px;
	margin-right: 4px;
	font-family: 'FontAwesome';
	font-style: normal;
	font-weight: normal;
	display: inline-block;
	line-height: 1;
}

.entry-featured:before {
	content: "\f041";
}

.entry-date a:before {
	content: "\f017";
}

.entry-author-link a:before {
	content: "\f007";
}

.entry-cat-links:before {
	content: "\f115";
}

.entry-comments-link a:before {
	content: "\f0e5";
	line-height: 1.5;
	vertical-align: top;
}

.entry-edit-link a:before {
	content: "\f040";
}

.entry-love a:before {
	content: "\f08a";
}

.entry-tags:before {
	content: "\f02c";
}

.entry-format-aside a:before {
	content: "\f1db";
}

.entry-format-gallery a:before {
	content: "\f030";
}

.entry-format-link a:before {
	content: "\f0c1";
}

.entry-format-image a:before {
	content: "\f03e";
}

.entry-format-quote a:before {
	content: "\f10e";
}

.entry-format-status a:before {
	content: "\f0a2";
}

.entry-format-video a:before {
	content: "\f03d";
}

.entry-format-audio a:before {
	content: "\f028";
}

.entry-format-chat a:before {
	content: "\f0e6";
}

.comment-meta a,
.entry-tags a,
.entry-title a,
.entry-meta a,
.entry-cat-links {
	display: inline;
}

.entry-meta {
	color: #999;
	font-size: 14px;
	font-style: italic;
}

.entry-meta>span {
	margin-right: 10px;
}

.entry-meta a {
	color: #999;
}

.entry-meta a:hover,
.entry-meta a:active,
.entry-meta a:focus {
	color: #9ac100;
}

.entry-title a {
	color: #333;
}

.entry-title a:hover,
.entry-title a:active,
.entry-title a:focus {
	color: #9ac100;
}

article {
	word-wrap: break-word;
}

.entry-summary a,
.entry-content a {
	color: #9ac100;
}

.blog .entry-summary p:last-of-type,
.blog .entry-content p:last-of-type {
	margin-bottom: 0;
}

.entry-summary embed,
.entry-summary object,
.entry-summary iframe,
.entry-summary video,
.entry-content embed,
.entry-content object,
.entry-content iframe,
.entry-content video {
	max-width: 100%;
}

.entry-summary .wp-audio-shortcode,
.entry-summary .wp-video,
.entry-content .wp-audio-shortcode,
.entry-content .wp-video {
	margin-bottom: 20px;
}

.entry-read-more {
	display: block;
	margin-top: 20px;
}

.entry-footer {
	margin-top: 24px;
}

.entry-footer .amy-footer-meta {
	border-top: 1px dotted #bdd759;
	border-bottom: 1px dotted #bdd759;
	padding: 10px 0;
	line-height: 30px;
}

.entry-footer .amy-footer-meta:before,
.entry-footer .amy-footer-meta:after {
	content: " ";
	display: table;
}

.entry-footer .amy-footer-meta:after {
	clear: both;
}

.entry-footer .amy-footer-meta .amy-post-tag-title,
.entry-footer .amy-footer-meta .amy-post-share-title {
	font-family: Dosis, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: bold;
	text-transform: uppercase;
}

.entry-footer .amy-footer-meta .entry-tags {
	float: left;
}

.entry-footer .amy-footer-meta .amy-post-share {
	float: right;
}

.entry-author {
	background-color: #fbfbfc;
	padding: 30px;
	margin-top: 30px;
}

.entry-author:before,
.entry-author:after {
	content: " ";
	display: table;
}

.entry-author:after {
	clear: both;
}

.entry-author .author-avatar {
	float: left;
}

.entry-author .author-avatar img {
	border-radius: 50%;
}

.entry-author .author-info {
	margin-left: 95px;
}

.entry-author .author-info h2.author-title {
	font-size: 18px;
	margin-top: 0;
	text-transform: none;
}

.post-navigation {
	margin-top: 20px;
}

.post-navigation:before,
.post-navigation:after {
	content: " ";
	display: table;
}

.post-navigation:after {
	clear: both;
}

.post-navigation .nav-previous {
	float: left;
}

.post-navigation .nav-next {
	float: right;
	text-align: right;
}

.blog-default article.sticky {
	background: #ecf0f1;
	padding: 30px;
	border-color: transparent;
}

.blog-default .hentry {
	padding-bottom: 0;
	margin-bottom: 40px;
}

.blog-default .hentry:last-of-type {
	border-bottom: 1px dashed #e5e5e5;
	margin-bottom: 20px;
	padding-bottom: 20px;
}

.blog-default .entry-header {
	margin-bottom: 15px;
}

.blog-default .entry-title {
	margin: 0 0 10px 0;
	font-size: 20px;
}

.blog-search {
	overflow: hidden;
}

.blog-masonry article.sticky {
	background: #ecf0f1;
	padding: 15px;
}

.blog-masonry .hentry {
	margin-bottom: 40px;
}

.blog-masonry .entry-header {
	margin-bottom: 15px;
}

.blog-masonry .entry-title {
	font-size: 20px;
	margin: 10px 0;
}

.single-post .hentry {
	margin-bottom: 0;
}

#comments .comments-title {
	color: #9ac100;
	margin: 50px 0;
}

#comments ol.comment-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

#comments ol.children {
	list-style: none;
	padding-left: 40px;
}

@media (max-width: 480px) {
	#comments ol.children {
		padding-left: 0;
	}
}

#comments .comment-body {
	margin-bottom: 10px;
	min-height: 75px;
	padding-bottom: 15px;
	padding-left: 85px;
	position: relative;
	background: #fff;
}

#comments .comment-body .comment-avatar {
	position: absolute;
	left: 0;
}

#comments .comment-body .comment-avatar img {
	border-radius: 50%;
}

#comments .comment-body .comment-data {
	background: #f8f8f8;
	padding: 20px;
	border: 1px solid #e1e1e1;
	position: relative;
}

#comments .comment-body .comment-data:before,
#comments .comment-body .comment-data:after {
	position: absolute;
	top: 30px;
	right: 100%;
	border: 1px solid transparent;
	content: " ";
	width: 0;
	height: 0;
	pointer-events: none;
}

#comments .comment-body .comment-data:before {
	border-color: rgba(225, 225, 225, 0);
	border-right-color: #e1e1e1;
	border-width: 9px;
	margin-top: -9px;
}

#comments .comment-body .comment-data:after {
	border-color: rgba(248, 248, 248, 0);
	border-right-color: #f8f8f8;
	border-width: 8px;
	margin-top: -8px;
}

#comments .comment-body .comment-meta {
	padding-bottom: 10px;
	border-bottom: 1px solid #e1e1e1;
}

#comments .comment-body .comment-author {
	display: inline-block;
	font-family: Dosis, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: bold;
	text-transform: uppercase;
	margin-right: 20px;
}

#comments .comment-body .comment-metadata {
	color: #cfcfcf;
	display: inline-block;
	font-size: 14px;
	font-style: italic;
}

#comments .comment-body .comment-metadata a {
	color: #cfcfcf;
}

#comments .comment-body .comment-reply {
	opacity: 0;
	float: right;
	text-transform: uppercase;
	font-size: 12px;
	transition: opacity 0.2s;
}

#comments .comment-body .comment-data:hover>.comment-meta>.comment-reply {
	opacity: 1;
}

#comments .comment-body .comment-content {
	padding-top: 15px;
}

#comments .comment-body .comment-content p:last-child {
	margin-bottom: 10px;
}

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

.comment-respond .comment-reply-title {
	color: #9ac100;
}

.page-links .page-links-title {
	font-weight: 700;
	border-color: transparent;
	background-color: transparent;
	color: #666;
}

.page-links span {
	color: #9ac100;
	padding: 4px 10px;
	border-radius: 3px;
	display: inline-block;
	border: 1px solid #e1e1e1;
}

.page-links a {
	display: inline-block;
}

.page-links a:hover span,
.page-links a:focus span,
.page-links a:active span,
.page-links>span {
	color: #fff;
	text-decoration: none;
	background: #9ac100;
	border-color: #9ac100;
}

.entry-image {
	position: relative;
	margin-bottom: 15px;
}

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

.entry-image a {
	display: inline-block;
	position: relative;
	width: 100%;
	height: 100%;
}

.entry-media {
	margin-bottom: 15px;
	overflow: hidden;
}

.entry-media .amy-organic-responsive-embed {
	position: relative;
	padding-bottom: 56.25%;
}

.entry-media .amy-organic-responsive-embed embed,
.entry-media .amy-organic-responsive-embed object,
.entry-media .amy-organic-responsive-embed video,
.entry-media .amy-organic-responsive-embed iframe {
	width: 100%;
	height: 100%;
	position: absolute;
}

.entry-media .wp-playlist {
	margin: 0 !important;
}

.wp-playlist-item,
.wp-playlist {
	border-color: #e8e8e8;
}

.format-audio .entry-image {
	margin-bottom: 0;
}

.entry-gallery {
	overflow: hidden;
	margin-bottom: 14px;
}

.gallery:before,
.gallery:after {
	content: " ";
	display: table;
}

.gallery:after {
	clear: both;
}

.gallery-item {
	float: left;
	max-width: 33.33%;
	vertical-align: top;
	width: 100%;
	margin: 0 0 20px 0;
}

.gallery-columns-1 .gallery-item {
	max-width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-icon img {
	margin: 0 auto;
}

.gallery-caption {
	color: #999;
	display: block;
	font-size: 13px;
	font-style: italic;
	padding-right: 5px;
}

.gallery-columns-6 .gallery-caption,
.gallery-columns-7 .gallery-caption,
.gallery-columns-8 .gallery-caption,
.gallery-columns-9 .gallery-caption {
	display: none;
}

.amy-chat {
	margin: 0;
	padding: 0;
	list-style: none;
}

.amy-chat-row {
	margin-bottom: 15px;
}

.amy-chat-author {
	font-weight: 700;
	display: inline;
}

.amy-chat-row-even .amy-chat-author {
	color: #2980b9;
}

.amy-chat-row-odd .amy-chat-author {
	color: #27ae60;
}

.amy-chat-text {
	display: inline;
}

.format-quote blockquote {
	margin-left: 0;
	margin-right: 0;
}

.main-content.blog-layout-default {
	padding: 80px 0;
}

@media (max-width: 989px) {
	.amy-post-tags .pull-left,
	.amy-post-tags .pull-right {
		float: none !important;
	}
	.amy-post-tags .amy-post-share {
		margin-top: 10px;
	}
	.amy-comments-wrapper ul {
		padding-left: 20px;
	}
	.amy-comments-wrapper .comment-body {
		padding-left: 60px;
	}
	.amy-comments-wrapper .comment-body .comment-avatar img {
		max-width: 50px;
		height: auto;
	}
	.amy-comments-wrapper .comment-body .comment-data:before,
	.amy-comments-wrapper .comment-body .comment-data:after {
		top: 20px;
	}
}

.amy_widget_custom_posts .amy-list-with-image li {
	padding-left: 70px;
	min-height: 75px;
}

.amy_widget_custom_posts .amy-list-with-image li a {
	font-family: Dosis, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: 700;
	text-transform: uppercase;
}

.amy_widget_custom_posts .amy-list-with-image li a img {
	top: 4px;
	max-width: 60px;
	border-radius: 2px;
}

.amy_widget_custom_posts .post-date,
.amy_widget_custom_posts .post-category {
	display: block;
	font-size: 11px;
	opacity: 0.7;
}

.amy-widget-list .entry-item {
	margin-bottom: 20px;
}

.amy-widget-list .entry-item .entry-thumb {
	float: left;
	margin-right: 20px;
}

.amy-widget-list .entry-item .entry-content h2.entry-title {
	font-size: 17px;
}

.amy-widget-list .entry-item .entry-content h2.entry-title a {
	color: #333;
}

.amy-widget-list .entry-item .entry-content h2.entry-title a:hover {
	color: #9ac100;
}

.amy-widget-module ul.amy-social-list {
	padding: 0;
	margin: 0;
}

.amy-widget-module ul.amy-social-list li {
	display: inline-block;
}

.amy-widget-module ul.amy-social-list li a.fa {
	display: inline-block;
	width: 33px;
	height: 33px;
	line-height: 30px;
	text-align: center;
	border-radius: 50%;
	border: 2px solid #dcdcdc;
	background: #fff;
	color: #d5d5d5;
	margin-right: 10px;
}

.amy-widget-module ul.amy-social-list li a.fa:hover {
	border-color: #9ac100;
	color: #9ac100;
}

.amy-widget-module .amy-instagram-wrap ul {
	padding: 0;
	margin: 0 -2px;
	list-style: none;
}

.amy-widget-module .amy-instagram-wrap ul li {
	width: 33.33%;
	padding: 0 2px;
	margin-bottom: 4px;
	display: inline-block;
	float: left;
	max-height: 85px;
	overflow: hidden;
}

.page-sidebar .amy-widget {
	margin-bottom: 40px !important;
}

.page-sidebar .amy-widget h4.amy-widget-title {
	font-size: 20px;
	color: #9ac100;
	font-weight: bold;
	margin-top: 0;
	margin-bottom: 20px;
	text-transform: uppercase;
}

.page-sidebar .amy-widget.instagram .amy-instagram-wrap ul li {
	max-height: 80px;
	overflow: hidden;
}

/**
 * ============================================================================
 * 04. SHORTCODES
 * ============================================================================
 */

/**
 * --------------------------------------------------------
 * 4.1. BASE
 * --------------------------------------------------------
 */

@keyframes spinner {
	to {
		transform: rotate(360deg);
	}
}

.col-md-15 {
	position: relative;
	min-height: 1px;
	padding-left: 15px;
	padding-right: 15px;
}

@media (min-width: 992px) {
	.col-md-15 {
		width: 20%;
	}
}

.amy-section .left-icon .aio-icon-left {
	vertical-align: middle;
}

.margin-bottom-20 {
	margin-bottom: 20px !important;
}

.margin-bottom-15 {
	margin-bottom: 15px !important;
}

.amy-main-content .wpb_image_grid .wpb_image_grid_ul li.isotope-item {
	margin-right: 30px;
	margin-top: 10px;
}

.img-outside-839-486 .vc_column-inner {
	padding-left: 0;
	padding-right: 0;
	width: 839px;
	margin-left: -35%;
	margin-bottom: -52px;
	position: relative;
	z-index: 9;
}

.img-outside-839-486 .vc_column-inner .wpb_single_image {
	margin-bottom: 0;
}

#parallax-bg1 {
	right: 0;
	position: fixed;
	top: 500px;
	width: 100%;
	z-index: 1;
}

@media (max-width: 800px) {
	#parallax-bg1 {
		display: none;
	}
}

#parallax-bg1 .vc_single_image-img {
	right: 45px;
	position: absolute;
	top: 915px;
	width: 229px;
}

@media (max-width: 1400px) {
	#parallax-bg1 .vc_single_image-img {
		width: 110px;
		right: 22px;
	}
}

.amy-contact-wrapper {
	width: 590px;
}

@media (max-width: 1280px) {
	.amy-contact-wrapper {
		width: 100%;
		padding-right: 15px;
	}
}

.amy-contact-wrapper h3 {
	margin-top: 0;
	color: #9ac100;
	margin-bottom: 25px;
}

.amy-contact-wrapper label {
	display: block;
}

.vc_btn3.vc_btn3-size-md.vc_btn3-shape-rounded {
	color: #9ac100 !important;
	background-color: #ffffff !important;
	background-image: none !important;
	border: 2px solid #e1e1e1 !important;
	border-radius: 30px !important;
	display: inline-block !important;
	padding: 12px 40px !important;
	font-size: 15px !important;
	font-family: Dosis, "Helvetica Neue", Helvetica, Arial, sans-serif !important;
	text-transform: uppercase !important;
	font-weight: bold;
}

.amytooltip.hint--top:before {
	left: calc(50% - 12px);
}

.amytooltip.hint--top:after {
	bottom: 100%;
	left: 35%;
}

.add_to_cart_button {
	text-align: -webkit-center !important;
	overflow: hidden;
}

.related.products {
	margin-bottom: 40px;
	padding-bottom: 0 !important;
}

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	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: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/* Above WP toolbar. */

.gallery-caption {
	color: #686868;
	display: block;
	font-size: 13px;
	font-size: 0.8125rem;
	font-style: italic;
	line-height: 1.6153846154;
	padding-top: 0.5384615385em;
}

.gallery-columns-6 .gallery-caption,
.gallery-columns-7 .gallery-caption,
.gallery-columns-8 .gallery-caption,
.gallery-columns-9 .gallery-caption {
	display: none;
}

.bypostauthor>article .fn:after {
	content: "";
	left: 3px;
	position: relative;
	top: 5px;
}

pre {
	border: 1px solid #d1d1d1;
	font-size: 1rem;
	line-height: 1.3125;
	margin: 0 0 1.75em;
	max-width: 100%;
	overflow: auto;
	padding: 1.75em;
	white-space: pre-wrap;
	word-wrap: break-word;
}

.amy-box5 .aio-icon-header+.aio-icon-description {
	margin-top: 4px;
}

.amy-box5 .left-icon .aio-icon-left {
	vertical-align: middle;
}

/**
 * --------------------------------------------------------
 * 4.2. BLOG
 * --------------------------------------------------------
 */

.amy-organic-blog .entry-info {
	margin-bottom: 20px;
	color: #999999;
	font-size: 14px;
	font-style: italic;
}

.amy-organic-blog .entry-info a {
	color: #999;
}

.amy-organic-blog .entry-info a:hover {
	color: #9ac100;
}

.amy-organic-blog .entry-info .space {
	padding: 0 6px;
}

.amy-organic-blog .entry-info .author a {
	padding-left: 3px;
}

.amy-organic-blog .entry-thumb {
	overflow: hidden;
}

.amy-organic-blog .entry-thumb img {
	transition: all 0.35s ease 0s;
	-webkit-transition: all 0.35s ease 0s;
}

.amy-organic-blog .entry-thumb:hover img {
	transform: scale(1.15);
	-webkit-transform: scale(1.15);
}

.amy-organic-blog.layout1 .entry-item {
	margin-bottom: 20px;
}

.amy-organic-blog.layout1 .entry-thumb {
	width: 100%;
	min-height: 30px;
}

.amy-organic-blog.layout1 .author-avatar {
	margin-left: 28px;
	margin-top: -28px;
	position: relative;
	z-index: 99;
}

.amy-organic-blog.layout1 .author-avatar img {
	border-radius: 50%;
	border: 2px solid #ffffff;
}

.amy-organic-blog.layout1 .entry-title {
	font-size: 20px;
	margin-top: 10px;
	margin-bottom: 10px;
}

.amy-organic-blog.layout1 .entry-title a {
	color: #333;
}

.amy-organic-blog.layout1 .entry-title a:hover {
	color: #9ac100;
}

.amy-organic-blog.layout1 .entry-summary {
	color: #716f6c;
	font-size: 15px;
	max-height: 65px;
	overflow: hidden;
}

.amy-organic-blog.layout2 .entry-title {
	font-size: 18px;
	margin: 16px 0 7px;
}

.amy-organic-blog.layout2 .entry-title a {
	color: #000000;
}

.amy-organic-blog.layout2 .entry-title a:hover {
	color: #9ac100;
}

.amy-organic-blog.layout2 .entry-summary {
	color: #716f6c;
	font-size: 15px;
	max-height: 45px;
	overflow: hidden;
}

@media (max-width: 980px) {
	.amy-organic-blog.layout2 .entry-item {
		margin-bottom: 20px;
	}
}

.amy-organic-blog.layout2 .in .entry-item {
	position: relative;
}

.amy-organic-blog.layout2 .in .entry-thumb {
	min-height: 602px;
}

@media (max-width: 980px) {
	.amy-organic-blog.layout2 .in .entry-thumb {
		min-height: 1px;
	}
}

.amy-organic-blog.layout2 .in .entry-content {
	padding: 150px 40px 40px;
	position: absolute;
	bottom: 0%;
	left: 0;
	background: red;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0), black);
}

@media (max-width: 980px) {
	.amy-organic-blog.layout2 .in .entry-content {
		padding: 0;
		position: inherit;
		background: none;
	}
}

.amy-organic-blog.layout2 .in .entry-content .entry-title a {
	color: #fff;
}

@media (max-width: 980px) {
	.amy-organic-blog.layout2 .in .entry-content .entry-title a {
		color: #333;
	}
}

.amy-organic-blog.layout2 .in .entry-content .entry-title a:hover {
	color: #9ac100;
}

.amy-organic-blog.layout2 .in .entry-summary {
	color: #fff;
}

@media (max-width: 980px) {
	.amy-organic-blog.layout2 .in .entry-summary {
		color: #666;
	}
}

@media (max-width: 768px) {
	.amy-organic-blog.layout3>.row .col-md-6 {
		width: 100%;
	}
	.amy-organic-blog.layout3>.row .col-md-6 .entry-item {
		margin-bottom: 25px;
		padding: 0 15px;
	}
	.amy-organic-blog.layout3>.row .col-md-6 .entry-item:before,
	.amy-organic-blog.layout3>.row .col-md-6 .entry-item:after {
		content: " ";
		display: table;
	}
	.amy-organic-blog.layout3>.row .col-md-6 .entry-item:after {
		clear: both;
	}
	.amy-organic-blog.layout3>.row .col-md-6 .entry-item .entry-title {
		max-height: initial;
		margin-top: 0;
	}
	.amy-organic-blog.layout3>.row .col-md-6 .entry-item a.more {
		margin-top: 0;
	}
	.amy-organic-blog.layout3>.row .col-md-6 .entry-item .entry-info {
		margin-bottom: 0;
	}
	.amy-organic-blog.layout3>.row .col-md-6 .entry-item .col-md-6:last-child .entry-thumb {
		margin-left: 15px;
	}
	.amy-organic-blog.layout3>.row .col-md-6 .entry-item .col-md-6:first-child .entry-thumb {
		margin-right: 15px;
	}
	.amy-organic-blog.layout3>.row .col-md-6 .row .col-md-6 {
		width: 50%;
		float: left;
		padding: 0;
	}
}

@media (max-width: 640px) {
	.amy-organic-blog.layout3 .col-md-6 .col-md-6:last-child .entry-content {
		margin-bottom: 0px;
	}
}

@media (max-width: 640px) {
	.amy-organic-blog.layout3 .col-md-6 .col-md-6 .entry-content {
		margin-bottom: 0;
	}
}

.amy-organic-blog.layout3 .entry-item {
	margin-bottom: 30px;
}

.amy-organic-blog.layout3 .entry-title {
	font-size: 22px;
	margin-top: 5px;
	max-height: 45px;
	overflow: hidden;
}

.amy-organic-blog.layout3 .entry-title a {
	color: #333;
}

.amy-organic-blog.layout3 .entry-title a:hover {
	color: #9ac100;
}

.amy-organic-blog.layout3 .entry-summary {
	color: #716f6c;
	font-size: 15px;
	max-height: 45px;
	overflow: hidden;
}

.amy-organic-blog.layout3 a.more {
	font-size: 13px;
	text-transform: uppercase;
	color: #b3b3b3;
	font-weight: bold;
	font-family: Dosis, "Helvetica Neue", Helvetica, Arial, sans-serif;
	display: inline-block;
	margin-top: 20px;
	position: relative;
}

.amy-organic-blog.layout3 a.more:hover {
	color: #9ac100;
}

.amy-organic-blog.layout3 a.more:after {
	position: absolute;
	content: "\f178";
	font-family: FontAwesome;
	right: -17px;
	top: 2px;
	font-size: 11px;
}

/**
 * --------------------------------------------------------
 * 4.3. PRODUCT
 * --------------------------------------------------------
 */

.line-bottom {
	background: rgba(0, 0, 0, 0) url("../images/line.png") repeat-x scroll center bottom;
	padding-bottom: 30px;
}

.amy-slick button:active {
	top: inherit !important;
}

.amy-shortcode-product .amy-shortcode-title {
	margin-right: -15px;
	margin-left: -15px;
	text-align: center;
	font-size: 38px;
	color: #9ac100;
}

.amy-shortcode-product.vertical {
	max-width: 360px;
}

.amy-shortcode-product.vertical .amy-shortcode-title {
	margin-right: -15px;
	margin-left: -15px;
	text-align: left;
}

@media (max-width: 768px) {
	.amy-shortcode-product.vertical .amy-shortcode-title {
		margin-right: 0px;
		margin-left: 0px;
	}
}

@media (max-width: 768px) {
	.amy-shortcode-product.vertical .amy-product-content.row {
		margin-right: 0px;
		margin-left: 0px;
	}
}

.amy-shortcode-product.vertical .amy-item {
	border: none;
}

.amy-shortcode-product.vertical .amy-item:hover {
	border: none;
}

.amy-shortcode-product.vertical .amy-item:hover .product-hover .yith-wcwl-add-to-wishlist {
	opacity: 1;
	transform: none;
}

.amy-shortcode-product.vertical .amy-item:hover .product-hover .compare-button {
	opacity: 1;
	transform: none;
}

.amy-shortcode-product.vertical .amy-item:hover .product-hover .add_to_cart_button {
	opacity: 1;
	transform: none;
}

.amy-shortcode-product.vertical .amy-item .product-hover:after {
	content: none;
}

.amy-shortcode-product.vertical .amy-item .product-hover .add_to_cart_button {
	opacity: 0;
	transform: translateY(20px);
	transition: transform 0.5s ease 0s, opacity 0.3s ease 0s;
	transition-delay: 0.1s;
}

.amy-shortcode-product.vertical .amy-item .product-hover .yith-wcwl-add-to-wishlist {
	opacity: 0;
	transform: translateY(20px);
	transition: transform 0.5s ease 0s, opacity 0.3s ease 0s;
}

.amy-shortcode-product.vertical .amy-item .product-hover .compare-button {
	opacity: 0;
	transform: translateY(20px);
	transition: transform 0.5s ease 0s, opacity 0.3s ease 0s;
	transition-delay: 0.2s;
}

.amy-shortcode-product.vertical .slick-arrow {
	display: none !important;
}

.amy-shortcode-product.vertical .amy-title {
	font-family: Dosis, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 24px;
	color: #9ac100;
	font-weight: bold;
	margin-bottom: 30px;
}

.amy-shortcode-product.vertical .amy-item {
	margin-bottom: 20px;
}

.amy-shortcode-product.vertical .amy-item .product .product-image {
	float: left;
	margin-right: 20px;
}

.amy-shortcode-product.vertical .amy-item .product .product-image img {
	border: 2px solid #e9e9e9;
	width: 140px;
	height: 150px;
}

.amy-shortcode-product.vertical .amy-item .product .product-description .product-title {
	margin-top: 5px;
}

.amy-shortcode-product.vertical .amy-item .product .product-description .product-title a {
	font-family: Dosis, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 16px;
	color: #333;
	font-weight: bold;
}

.amy-shortcode-product.vertical .amy-item .product .product-description .product-title a:hover {
	color: #9ac100;
}

.amy-shortcode-product.vertical .amy-item .product .product-description .price .amount {
	color: #fda901;
	font-family: Dosis, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 20px;
	font-weight: bold;
}

.amy-shortcode-product.vertical .amy-item .product .product-description .price del .amount {
	font-family: Dosis, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 15px;
	color: #999;
	font-weight: 400;
}

.amy-shortcode-product.vertical .amy-item .product .product-description .price ins {
	text-decoration: none;
}

.amy-shortcode-product.vertical .amy-item .product .product-description .price ins .amount {
	color: #fda901;
	font-family: Dosis, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 20px;
	font-weight: bold;
}

.amy-shortcode-product.vertical .amy-item .product .product-description .star-rating {
	display: block;
	float: none;
	overflow: hidden;
	font-size: 15px;
	line-height: 20px;
	position: relative;
	font-family: FontAwesome;
	height: 20px;
	width: 70px;
	margin-bottom: 10px;
}

.amy-shortcode-product.vertical .amy-item .product .product-description .star-rating:before {
	color: #eaeaea;
	content: "\f005\f005\f005\f005\f005";
	position: absolute;
	left: 0;
	right: 0;
	text-align: center;
}

.amy-shortcode-product.vertical .amy-item .product .product-description .star-rating span {
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	color: #9ac100;
	padding-top: 1.5em;
}

.amy-shortcode-product.vertical .amy-item .product .product-description .star-rating span:before {
	position: absolute;
	content: "\f005\f005\f005\f005\f005";
	left: 0;
	top: 0;
	text-align: center;
}

.amy-shortcode-product.vertical ul.slick-dots {
	position: absolute;
	top: -60px;
	right: 30px !important;
	bottom: inherit !important;
	right: 0;
	width: auto;
	height: auto !important;
	padding: 0;
}

.amy-shortcode-product.vertical ul.slick-dots:before {
	content: "";
	height: 1px;
	width: 100px;
	background: #e9e9e9;
	position: absolute;
	top: 5px;
	left: -120px;
}

.amy-shortcode-product.vertical ul.slick-dots li {
	width: auto;
	height: auto;
	float: left;
}

.amy-shortcode-product.vertical ul.slick-dots li.slick-active button {
	background: #9ac100;
	opacity: 1;
}

.amy-shortcode-product.vertical ul.slick-dots li button {
	padding: 0;
	width: 8px !important;
	height: 8px !important;
	border-radius: 50%;
	background: #eaeaea;
	opacity: 1;
}

.amy-shortcode-product.vertical ul.slick-dots li button:before {
	content: none;
}

.amy-shortcode-product .amy-product-filter ul {
	margin: 0;
	padding: 0;
	text-align: center;
}

.amy-shortcode-product .amy-product-filter ul li {
	cursor: pointer;
	display: inline-block;
	list-style: none;
	margin: 0;
	padding: 0 10px;
}

.amy-shortcode-product .amy-product-filter ul li span {
	font-size: 16px;
}

.amy-shortcode-product .amy-product-filter ul li.active span {
	color: #fda901;
}

.amy-shortcode-product .amy-product-content .amy-item {
	opacity: 0;
	display: none;
	transition: all 0.2s ease-out 0s;
}

.amy-shortcode-product .amy-product-content .amy-item.open {
	opacity: 1;
	display: block;
}

.amy-shortcode-product.border .amy-item {
	margin-left: 13px;
	margin-right: 13px;
	border: 2px solid #e5e5e5;
	padding-bottom: 20px;
}

.amy-shortcode-product.border .amy-item:hover .product-hover .yith-wcwl-add-to-wishlist {
	opacity: 1;
	transform: none;
}

.amy-shortcode-product.border .amy-item:hover .product-hover .compare-button {
	opacity: 1;
	transform: none;
}

.amy-shortcode-product.border .amy-item .product-hover {
	opacity: 1;
}

.amy-shortcode-product.border .amy-item .product-hover .yith-wcwl-add-to-wishlist {
	opacity: 0;
	transform: translateY(-65px);
	transition: transform 0.5s ease 0s, opacity 0.3s ease 0s;
}

.amy-shortcode-product.border .amy-item .product-hover .compare-button {
	opacity: 0;
	transform: translateY(-65px);
	transition: transform 0.5s ease 0s, opacity 0.3s ease 0s;
}

.amy-shortcode-product.horizontal.no_border .amy-product-content {
	margin: 0 auto;
}

.amy-shortcode-product.horizontal.no_border .amy-item {
	float: left;
}

@media (max-width: 768px) {
	.amy-shortcode-product.horizontal.no_border .amy-item {
		position: initial !important;
	}
}

.amy-shortcode-product.horizontal.carousel {
	max-width: 1626px;
	margin: 0 auto;
}

.amy-shortcode-product.horizontal.carousel .slick-track {
	margin: 0 auto;
}

.amy-shortcode-product.horizontal.carousel:hover .slick-arrow {
	opacity: 1;
}

@media (max-width: 1400px) {
	.amy-shortcode-product.horizontal.carousel {
		max-width: 1280px;
	}
}

@media (max-width: 1280px) {
	.amy-shortcode-product.horizontal.carousel {
		max-width: 1200px;
		padding: 0 30px;
	}
}

.amy-shortcode-product.horizontal.carousel.heading-bottom .amy-shortcode-title {
	position: relative;
	margin-bottom: 40px;
	margin-top: 0;
}

.amy-shortcode-product.horizontal.carousel.heading-bottom .amy-shortcode-title:after {
	position: absolute;
	content: url("../images/line-heading-bottom.png");
	top: 36px;
	left: 0;
	right: 0;
	margin: 0 auto;
}

.amy-shortcode-product.horizontal.carousel .slick-arrow {
	background: #fff;
	z-index: 99;
	opacity: 0;
}

.amy-shortcode-product.horizontal.carousel .slick-prev {
	width: 46px;
	height: 46px;
	line-height: 40px;
	border: 2px solid #c8c8c8;
	left: -78px;
	top: 50% !important;
	position: absolute;
}

@media (max-width: 1400px) {
	.amy-shortcode-product.horizontal.carousel .slick-prev {
		left: -10px;
	}
}

.amy-shortcode-product.horizontal.carousel .slick-prev:before {
	font-family: FontAwesome;
	color: #c8c8c8;
	content: "\f104";
	line-height: 40px;
}

.amy-shortcode-product.horizontal.carousel .slick-next {
	width: 46px;
	height: 46px;
	line-height: 40px;
	border: 2px solid #c8c8c8;
	right: -78px;
	top: 50% !important;
	position: absolute;
}

@media (max-width: 1400px) {
	.amy-shortcode-product.horizontal.carousel .slick-next {
		right: -10px;
	}
}

.amy-shortcode-product.horizontal.carousel .slick-next:before {
	font-family: FontAwesome;
	color: #c8c8c8;
	content: "\f105";
	line-height: 40px;
}

.amy-shortcode-product.horizontal.border .amy-product-filter {
	margin-bottom: 40px;
}

@media (max-width: 768px) {
	.amy-shortcode-product.horizontal.border .amy-product-filter {
		margin-bottom: 20px;
	}
}

.amy-shortcode-product.horizontal .amy-product-filter ul li {
	padding: 0 30px;
	margin-bottom: 10px;
	text-transform: uppercase;
	font-family: Dosis, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: bold;
}

.amy-shortcode-product.horizontal .amy-product-filter ul li:hover {
	color: #fda901;
}

.amy-shortcode-product.horizontal .amy-product-filter ul li img {
	width: 58px;
	height: 50px;
}

.amy-shortcode-product.horizontal .amy-product-filter ul li span {
	display: block;
	margin-top: 10px;
}

@media (max-width: 768px) {
	.amy-shortcode-product.horizontal .amy-product-filter ul li span {
		font-size: 13px;
	}
}

@media (max-width: 768px) {
	.amy-shortcode-product.horizontal .amy-product-filter ul li {
		padding: 0 20px;
	}
}

.amy-shortcode-product.horizontal .amy-item {
	margin-bottom: 3px;
}

.amy-shortcode-product.horizontal .amy-item .product {
	text-align: center;
}

.amy-shortcode-product.horizontal .amy-item .product .product-image {
	min-height: 177px;
}

@media (max-width: 768px) {
	.amy-shortcode-product.horizontal .amy-item .product .product-image {
		min-height: inherit;
	}
}

.amy-shortcode-product.horizontal .amy-item .product .product-description {
	text-align: center;
}

.amy-shortcode-product.horizontal .amy-item .product .product-description .product-title a {
	color: #333;
	font-family: Dosis, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 18px;
}

.amy-shortcode-product.horizontal .amy-item .product .product-description .product-title a:hover {
	color: #fda901;
}

@media (max-width: 768px) {
	.amy-shortcode-product.horizontal .amy-item .product .product-description .product-title a {
		font-size: 14px;
	}
}

.amy-shortcode-product.horizontal .amy-item .product .product-description .price {
	display: block;
}

.amy-shortcode-product.horizontal .amy-item .product .product-description .price del .amount {
	color: #999;
	font-size: 15px;
	font-weight: 400;
	margin-right: 5px;
}

.amy-shortcode-product.horizontal .amy-item .product .product-description .price ins {
	text-decoration: none;
}

.amy-shortcode-product.horizontal .amy-item .product .product-description .price .amount {
	font-family: Dosis, "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: #fda901;
	font-size: 20px;
	font-weight: bold;
}

.amy-shortcode-product.horizontal .amy-item .product .product-description .add_to_cart_button,
.amy-shortcode-product.horizontal .amy-item .product .product-description .add_to_cart_button.loading {
	font-size: 0;
	background: #9ac100;
	color: #fff;
	display: inline-block;
	text-align: center;
	vertical-align: middle;
	border: 1px solid #9ac100;
	border-radius: 50%;
	z-index: 1;
}

.amy-shortcode-product.horizontal .amy-item .product .product-description .add_to_cart_button:before,
.amy-shortcode-product.horizontal .amy-item .product .product-description .add_to_cart_button.loading:before {
	font-family: FontAwesome;
	font-size: 14px;
}

.amy-shortcode-product.horizontal .amy-item .product .product-description .add_to_cart_button:hover,
.amy-shortcode-product.horizontal .amy-item .product .product-description .add_to_cart_button.loading:hover {
	background: #fff;
	border-color: #9ac100;
	color: #9ac100;
}

.amy-shortcode-product.horizontal .amy-item .product .product-description .add_to_cart_button:hover:after,
.amy-shortcode-product.horizontal .amy-item .product .product-description .add_to_cart_button.loading:hover:after {
	border-color: #fff;
	transition: all 0.2s ease-in-out 0s;
}

.amy-shortcode-product.horizontal .amy-item .product .product-description a.add_to_cart_button {
	width: 40px;
	height: 40px;
	line-height: 40px;
	padding: 0;
	margin-top: 25px;
	position: relative;
	z-index: 9;
}

.amy-shortcode-product.horizontal .amy-item .product .product-description a.add_to_cart_button.loading {
	width: 40px !important;
	height: 40px !important;
	line-height: 40px !important;
	font-family: FontAwesome;
	animation: spinner 1.5s linear infinite !important;
	-webkit-animation: spinner 1.5s linear infinite !important;
}

.amy-shortcode-product.horizontal .amy-item .product .product-description a.add_to_cart_button.loading:after {
	content: none;
}

.amy-shortcode-product.horizontal .amy-item .product .product-description a.add_to_cart_button.loading:before {
	content: "\f021";
	font-size: 14px;
}

.amy-shortcode-product.horizontal .amy-item .product .product-description a.add_to_cart_button.added {
	display: none;
}

.amy-shortcode-product.horizontal .amy-item .product .product-description a.add_to_cart_button:after {
	content: "";
	height: 1px;
	width: 165px;
	border-top: 1px dotted #9ac100;
	position: absolute;
	top: 20px;
	left: -65px;
	z-index: -1;
}

.amy-shortcode-product.horizontal .amy-item .product .product-description a.add_to_cart_button:before {
	content: "\f291";
	font-size: 15px;
}

.amy-shortcode-product.horizontal .amy-item .product .product-description a.added_to_cart {
	display: block;
	height: 40px;
	line-height: 40px;
	margin-top: 25px;
	margin-bottom: 5px;
	padding: 0;
	position: relative;
	width: 40px;
	z-index: 9;
	border-radius: 50%;
	background: #fda901;
	border: 1px solid #fda901;
	color: #ffffff;
	display: inline-block;
	font-size: 0;
	text-align: center;
	vertical-align: middle;
}

.amy-shortcode-product.horizontal .amy-item .product .product-description a.added_to_cart:before {
	font-family: FontAwesome;
	font-size: 15px;
	content: "\f00c";
}

.amy-shortcode-product.horizontal .amy-item .product .product-description a.added_to_cart:after {
	content: "";
	height: 1px;
	width: 165px;
	border-top: 1px dotted #fda901;
	position: absolute;
	top: 20px;
	left: -65px;
	z-index: -1;
}

@media (max-width: 980px) {
	.amy-shortcode-product {
		padding: 0 20px;
	}
}

.amy-shortcode-product .amy-item {
	padding-bottom: 20px;
	cursor: pointer;
	border: 2px solid rgba(229, 229, 229, 0);
}

.amy-shortcode-product .amy-item:hover {
	border: 2px solid #e5e5e5;
}

.amy-shortcode-product .amy-item:hover .product-hover {
	opacity: 1;
}

.amy-shortcode-product .amy-item .product-hover {
	opacity: 0;
}

.amy-shortcode-product .product-hover {
	margin-top: 10px;
	position: relative;
}

.amy-shortcode-product .product-hover:after {
	content: "";
	position: absolute;
	display: block;
	width: 90%;
	height: 1px;
	border-top: 1px dotted #9ac100;
	top: 22px;
	left: 0;
	right: 0;
	margin: 0 auto;
}

.amy-shortcode-product .compare-button {
	display: inline-block;
}

.amy-shortcode-product .yith-wcwl-add-to-wishlist a.add_to_wishlist,
.amy-shortcode-product .yith-wcwl-wishlistaddedbrowse a,
.amy-shortcode-product .yith-wcwl-wishlistexistsbrowse a,
.amy-shortcode-product a.compare {
	font-size: 0;
	background: #fff;
	color: #9ac100;
	display: inline-block;
	padding: 0;
	width: 36px;
	height: 36px;
	line-height: 36px;
	text-align: center;
	vertical-align: middle;
	border: 1px solid #e6e6e6;
	margin-right: 10px;
	margin-bottom: 0;
	border-radius: 50%;
	z-index: 99;
	position: relative;
}

.amy-shortcode-product .yith-wcwl-add-to-wishlist a.add_to_wishlist:hover,
.amy-shortcode-product .yith-wcwl-wishlistaddedbrowse a:hover,
.amy-shortcode-product .yith-wcwl-wishlistexistsbrowse a:hover,
.amy-shortcode-product a.compare:hover {
	background: #9ac100;
}

.amy-shortcode-product .yith-wcwl-add-to-wishlist a.add_to_wishlist:hover:before,
.amy-shortcode-product .yith-wcwl-wishlistaddedbrowse a:hover:before,
.amy-shortcode-product .yith-wcwl-wishlistexistsbrowse a:hover:before,
.amy-shortcode-product a.compare:hover:before {
	color: #fff;
}

.amy-shortcode-product .yith-wcwl-add-to-wishlist a.add_to_wishlist:before,
.amy-shortcode-product .yith-wcwl-wishlistaddedbrowse a:before,
.amy-shortcode-product .yith-wcwl-wishlistexistsbrowse a:before,
.amy-shortcode-product a.compare:before {
	font-family: FontAwesome;
	font-size: 14px;
}

.amy-shortcode-product .yith-wcwl-wishlistaddedbrowse .feedback,
.amy-shortcode-product .yith-wcwl-wishlistexistsbrowse .feedback {
	display: none;
}

.amy-shortcode-product .yith-wcwl-wishlistaddedbrowse a,
.amy-shortcode-product .yith-wcwl-wishlistexistsbrowse a {
	color: #fda901;
	border-color: #eee;
}

.amy-shortcode-product .yith-wcwl-add-to-wishlist {
	margin-top: 0;
	margin-right: -4px;
	display: inline-block;
}

.amy-shortcode-product .yith-wcwl-add-to-wishlist a.add_to_wishlist:before,
.amy-shortcode-product .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a:before,
.amy-shortcode-product .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a:before {
	content: "\f004";
}

.amy-shortcode-product .yith-wcwl-add-to-wishlist .ajax-loading {
	display: none !important;
}

.amy-shortcode-product a.compare {
	margin-right: 0;
}

.amy-shortcode-product a.compare:before {
	content: "\f074";
}

.amy-shortcode-product .product-hover .add_to_cart_button.loading {
	width: 40px !important;
	height: 40px !important;
	line-height: 40px !important;
	font: normal normal normal 14px/1 FontAwesome;
	animation: spinner 1.5s linear infinite !important;
	-webkit-animation: spinner 1.5s linear infinite !important;
}

.amy-shortcode-product .product-hover .add_to_cart_button.loading:before {
	content: "\f021";
}

.amy-shortcode-product .product-hover .add_to_cart_button,
.amy-shortcode-product .product-hover .add_to_cart_button.loading,
.amy-shortcode-product .product-hover .added_to_cart {
	font-size: 0;
	background: #fff;
	color: #9ac100;
	display: inline-block;
	padding: 0;
	width: 36px;
	height: 36px;
	line-height: 36px;
	text-align: center;
	vertical-align: middle;
	border: 1px solid #e6e6e6;
	margin-right: 10px;
	border-radius: 50%;
	z-index: 99;
	position: relative;
}

.amy-shortcode-product .product-hover .add_to_cart_button:before,
.amy-shortcode-product .product-hover .add_to_cart_button.loading:before,
.amy-shortcode-product .product-hover .added_to_cart:before {
	font-family: FontAwesome;
	font-size: 14px;
}

.amy-shortcode-product .product-hover .add_to_cart_button.added {
	display: none;
}

.amy-shortcode-product .product-hover .added_to_cart:before {
	color: #fda901;
}

.amy-shortcode-product .product-hover a.add_to_cart_button,
.amy-shortcode-product .product-hover a.added_to_cart {
	width: 40px;
	height: 40px;
	line-height: 40px;
}

.amy-shortcode-product .product-hover a.add_to_cart_button:hover,
.amy-shortcode-product .product-hover a.added_to_cart:hover {
	background: #9ac100;
}

.amy-shortcode-product .product-hover a.add_to_cart_button:hover:before,
.amy-shortcode-product .product-hover a.added_to_cart:hover:before {
	color: #fff;
}

.amy-shortcode-product .product-hover a.add_to_cart_button:before,
.amy-shortcode-product .product-hover a.added_to_cart:before {
	content: "\f291";
	font-size: 15px;
}

.amy-shortcode-product.horizontal.no_border.amy-isotope [class*="col"] {
	width: 220px !important;
}

@media (max-width: 1400px) {
	.amy-shortcode-product.horizontal.no_border.amy-isotope [class*="col"] {
		width: 220px !important;
	}
}

@media (max-width: 480px) {
	.amy-shortcode-product.horizontal.no_border.amy-isotope [class*="col"] {
		float: none;
		margin: 0 auto;
	}
}

/**
 * --------------------------------------------------------
 * 4.4. IMAGE ATRIBUTES
 * --------------------------------------------------------
 */

.amy-organic-attributes {
	position: relative;
}

.amy-organic-atribute-item {
	background: #9ac100;
	border-radius: 100%;
	display: inline-block;
	height: 40px;
	left: 50%;
	margin: -25px 0 0 -25px;
	position: absolute;
	text-indent: -9999px;
	top: 50%;
	transition: all 1s ease 0s;
	width: 40px;
}

@media (max-width: 1280px) {
	.amy-organic-atribute-item.custom {
		display: none;
	}
}

.amy-organic-atribute-item img {
	border-radius: 50%;
}

.amy-organic-atribute-item.has-icon {
	text-indent: inherit;
}

.amy-organic-atribute-item.has-icon .amy-atribute-hidden {
	text-indent: -999em;
}

.amy-organic-atribute-item.has-icon.active .amy-atribute-hidden {
	text-indent: inherit;
}

.amy-organic-atribute-item.has-icon.active>img {
	display: none;
}

.amy-organic-atribute-item.tl {
	left: 22%;
	top: 20%;
}

.amy-organic-atribute-item.tc {
	top: 15%;
}

.amy-organic-atribute-item.tr {
	left: auto;
	right: 10%;
	top: 32%;
}

.amy-organic-atribute-item.br {
	left: auto;
	top: auto;
	bottom: 45px;
	right: 20%;
}

.amy-organic-atribute-item.bl {
	left: 22%;
	top: auto;
	bottom: 45px;
}

.amy-organic-atribute-item.bc {
	left: 50%;
	top: auto;
	bottom: 45px;
}

.amy-organic-atribute-item.active {
	height: 220px;
	margin-left: -110px;
	margin-top: -110px;
	text-indent: inherit;
	width: 220px;
}

.amy-organic-atribute-item.active:after,
.amy-organic-atribute-item.active:before {
	display: none;
}

.amy-organic-atribute-item:after,
.amy-organic-atribute-item:before {
	background-color: #fff;
	content: "";
	left: 50%;
	position: absolute;
	top: 50%;
}

.amy-organic-atribute-item:after {
	height: 17px;
	margin: -8.5px 0 0 -1.5px;
	width: 3px;
}

.amy-organic-atribute-item:before {
	height: 3px;
	margin: -1.5px 0 0 -8.5px;
	width: 17px;
}

.amy-organic-atribute-item em.animated {
	border: 5px solid rgba(255, 255, 255, 0.5);
	border-radius: 50%;
	bottom: -5px;
	content: "";
	left: -5px;
	position: absolute;
	right: -5px;
	top: -5px;
	z-index: 2;
	background: #9ac100;
}

.amy-organic-atribute-item .amy-atribute-hidden {
	border: 3px solid white;
	border-radius: 100%;
	bottom: 0px;
	box-sizing: border-box;
	left: 0px;
	line-height: 22px;
	overflow: hidden;
	padding: 0px;
	margin: -3px;
	position: absolute;
	right: 0px;
	text-align: center;
	top: 0px;
	z-index: 3;
	cursor: pointer;
	color: #ffffff;
}

.amy-organic-atribute-item .amy-atribute-hidden h3 {
	margin-top: 50px;
}

/* Animation */

.bullets {
	animation-name: bullets;
	animation-duration: 1.5s;
}

@keyframes bullets {
	0% {
		transform: scale(1);
		opacity: 0.6;
	}
	100% {
		transform: scale(2);
		opacity: 0;
	}
}

/**
 * --------------------------------------------------------
 * 4.5. PRODUCT COUNTDOWN
 * --------------------------------------------------------
 */

.amy-productcountdown {
	position: relative;
	background: #ffffff;
	padding: 43px 50px 43px 90px;
	box-shadow: 0 0 40px #ccc;
	min-height: 424px;
}

@media (max-width: 1280px) {
	.amy-productcountdown {
		padding: 60px 15px 60px 60px;
	}
}

@media (max-width: 768px) {
	.amy-productcountdown {
		padding: 60px 15px 60px 100px;
	}
}

@media (max-width: 640px) {
	.amy-productcountdown {
		padding: 30px 15px;
	}
}

.amy-productcountdown .product-time {
	position: absolute;
	left: -36px;
	top: 30px;
	background: #9ac100;
	border-radius: 40px;
}

@media (max-width: 768px) {
	.amy-productcountdown .product-time {
		left: 0;
	}
}

@media (max-width: 640px) {
	.amy-productcountdown .product-time {
		position: initial;
		margin-bottom: 15px;
		border-radius: 4px;
	}
	.amy-productcountdown .product-time:before,
	.amy-productcountdown .product-time:after {
		content: " ";
		display: table;
	}
	.amy-productcountdown .product-time:after {
		clear: both;
	}
	.amy-productcountdown .product-time ul {
		text-align: center;
	}
	.amy-productcountdown .product-time ul li {
		display: inline-block !important;
		float: none;
		border: none;
	}
	.amy-productcountdown .product-time ul li span {
		display: inline-block !important;
		margin-left: 3px;
	}
}

.amy-productcountdown .product-time ul {
	margin: 0;
	padding: 0;
}

.amy-productcountdown .product-time ul li {
	list-style: none;
	display: block;
	padding: 20px 0;
	margin: 0 20px;
	text-align: center;
	font-size: 15px;
	font-family: ABeeZee, "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: #fff;
	border-bottom: 1px solid #c8dd73;
}

.amy-productcountdown .product-time ul li:last-child {
	border-bottom: none;
}

.amy-productcountdown .product-time ul li span {
	display: block;
	font-size: 26px;
	font-weight: 700;
	font-family: Dosis, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.amy-productcountdown .product-item:after {
	clear: both;
	content: " ";
	display: table;
}

.amy-productcountdown .product-item:before {
	content: " ";
	display: table;
}

.amy-productcountdown .product-item .saleup {
	font-family: "Dancing Script", cursive;
	font-size: 25px;
	color: #666666;
	font-weight: bold;
	margin-bottom: 5px;
}

.amy-productcountdown .product-item .saleup .roundprice {
	color: #9ac100;
}

.amy-productcountdown .product-item .product-title {
	margin-top: 0;
	margin-bottom: 15px;
}

.amy-productcountdown .product-item .product-title a {
	color: #333;
	font-size: 32px;
	font-weight: bold;
	text-transform: uppercase;
}

.amy-productcountdown .product-item .product-title a:hover {
	color: #fda901;
}

.amy-productcountdown .product-item .price {
	display: inline-block;
	float: left;
}

.amy-productcountdown .product-item .price .amount {
	font-size: 32px;
	color: #fda901;
	font-weight: bold;
	font-family: Dosis, "Helvetica Neue", Helvetica, Arial, sans-serif;
	text-decoration: none;
}

.amy-productcountdown .product-item .price del .amount {
	color: #999999;
	font-size: 17px;
	font-family: Dosis, "Helvetica Neue", Helvetica, Arial, sans-serif;
	margin-right: 15px;
}

.amy-productcountdown .product-item .price ins {
	text-decoration: none;
}

.amy-productcountdown .product-item .price ins .amount {
	font-size: 32px;
	color: #fda901;
	font-weight: bold;
	font-family: Dosis, "Helvetica Neue", Helvetica, Arial, sans-serif;
	text-decoration: none;
}

.amy-productcountdown .product-item .product-description {
	margin-bottom: 40px;
}

@media (max-width: 640px) {
	.amy-productcountdown .product-item .product-description {
		margin-bottom: 20px;
	}
}

.amy-productcountdown .product-item .product-description ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.amy-productcountdown .product-item .product-description ul li {
	padding-left: 1em;
	text-indent: -.7em;
}

.amy-productcountdown .product-item .product-description ul li:before {
	content: "• ";
	color: #9ac100;
}

.amy-productcountdown .product-item .product-buttons {
	display: inline-block;
	float: right;
	position: relative;
	padding: 0 50px;
}

@media (max-width: 480px) {
	.amy-productcountdown .product-item .product-buttons {
		padding: 0 20px;
		float: none;
		margin: 0 auto;
	}
}

.amy-productcountdown .product-item .product-buttons:after {
	position: absolute;
	content: "";
	height: 1px;
	width: 100%;
	border-top: 1px dotted #9ac100;
	top: 50%;
	left: 0;
	z-index: 0;
}

.amy-productcountdown .product-item .product-buttons .add_to_cart_button,
.amy-productcountdown .product-item .product-buttons .add_to_cart_button.loading {
	font-size: 0;
	background: #fff;
	color: #9ac100;
	display: inline-block;
	width: 36px;
	height: 36px;
	line-height: 36px;
	text-align: center;
	vertical-align: middle;
	border: 1px solid #9ac100;
	margin-right: 10px;
	border-radius: 50%;
	z-index: 1;
}

.amy-productcountdown .product-item .product-buttons .add_to_cart_button:before,
.amy-productcountdown .product-item .product-buttons .add_to_cart_button.loading:before {
	font-family: FontAwesome;
	font-size: 14px;
}

.amy-productcountdown .product-item .product-buttons .add_to_cart_button:hover,
.amy-productcountdown .product-item .product-buttons .add_to_cart_button.loading:hover {
	background: #9ac100;
	border-color: #9ac100;
	color: #fff;
}

.amy-productcountdown .product-item .product-buttons a.add_to_cart_button {
	width: 40px;
	height: 40px;
	line-height: 40px;
	padding: 0;
	position: relative;
	z-index: 9;
}

.amy-productcountdown .product-item .product-buttons a.add_to_cart_button.loading {
	width: 40px !important;
	height: 40px !important;
	line-height: 40px !important;
	font-family: FontAwesome;
	animation: spinner 1.5s linear infinite !important;
	-webkit-animation: spinner 1.5s linear infinite !important;
}

.amy-productcountdown .product-item .product-buttons a.add_to_cart_button.loading:before {
	content: "\f021";
	font-size: 14px;
}

.amy-productcountdown .product-item .product-buttons a.add_to_cart_button.added {
	display: none;
}

.amy-productcountdown .product-item .product-buttons a.add_to_cart_button:before {
	content: "\f291";
	font-size: 15px;
}

.amy-productcountdown .product-item .product-buttons .added_to_cart.wc-forward {
	display: block;
	height: 40px;
	line-height: 40px;
	margin-right: 10px;
	padding: 0;
	position: relative;
	width: 40px;
	z-index: 9;
	border-radius: 50%;
	background: #fda901;
	border: 1px solid #fda901;
	color: #ffffff;
	display: inline-block;
	font-size: 0;
	text-align: center;
	vertical-align: middle;
}

.amy-productcountdown .product-item .product-buttons .added_to_cart.wc-forward:before {
	font-family: FontAwesome;
	font-size: 15px;
	content: "\f00c";
}

.amy-productcountdown .product-item .product-buttons .added_to_cart.wc-forward:hover {
	color: #fda901;
	background: #fff;
}

.amy-productcountdown .product-item .product-buttons .compare-button {
	display: inline-block;
	margin-bottom: 0;
}

.amy-productcountdown .product-item .product-buttons .yith-wcwl-add-to-wishlist a.add_to_wishlist,
.amy-productcountdown .product-item .product-buttons .yith-wcwl-wishlistaddedbrowse a,
.amy-productcountdown .product-item .product-buttons .yith-wcwl-wishlistexistsbrowse a,
.amy-productcountdown .product-item .product-buttons a.compare {
	font-size: 0;
	background: #fff;
	color: #9ac100;
	display: inline-block;
	width: 36px;
	height: 36px;
	line-height: 36px;
	text-align: center;
	vertical-align: middle;
	border: 1px solid #9ac100;
	margin-right: 10px;
	border-radius: 50%;
	z-index: 9;
	position: relative;
}

.amy-productcountdown .product-item .product-buttons .yith-wcwl-add-to-wishlist a.add_to_wishlist:before,
.amy-productcountdown .product-item .product-buttons .yith-wcwl-wishlistaddedbrowse a:before,
.amy-productcountdown .product-item .product-buttons .yith-wcwl-wishlistexistsbrowse a:before,
.amy-productcountdown .product-item .product-buttons a.compare:before {
	font-family: FontAwesome;
	font-size: 14px;
}

.amy-productcountdown .product-item .product-buttons .yith-wcwl-add-to-wishlist a.add_to_wishlist:hover,
.amy-productcountdown .product-item .product-buttons .yith-wcwl-wishlistaddedbrowse a:hover,
.amy-productcountdown .product-item .product-buttons .yith-wcwl-wishlistexistsbrowse a:hover,
.amy-productcountdown .product-item .product-buttons a.compare:hover {
	background: #9ac100;
	color: #fff;
}

.amy-productcountdown .product-item .product-buttons .yith-wcwl-wishlistaddedbrowse .feedback,
.amy-productcountdown .product-item .product-buttons .yith-wcwl-wishlistexistsbrowse .feedback {
	display: none;
}

.amy-productcountdown .product-item .product-buttons .yith-wcwl-wishlistaddedbrowse a,
.amy-productcountdown .product-item .product-buttons .yith-wcwl-wishlistexistsbrowse a {
	color: #fda901;
	border-color: #fda901;
}

.amy-productcountdown .product-item .product-buttons .yith-wcwl-wishlistaddedbrowse a:hover,
.amy-productcountdown .product-item .product-buttons .yith-wcwl-wishlistexistsbrowse a:hover {
	border-color: #9ac100;
}

.amy-productcountdown .product-item .product-buttons .yith-wcwl-add-to-wishlist {
	margin-top: 0;
	margin-right: -4px;
	display: inline-block;
}

.amy-productcountdown .product-item .product-buttons .yith-wcwl-add-to-wishlist a.add_to_wishlist:before,
.amy-productcountdown .product-item .product-buttons .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a:before,
.amy-productcountdown .product-item .product-buttons .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a:before {
	content: "\f004";
}

.amy-productcountdown .product-item .product-buttons .yith-wcwl-add-to-wishlist .ajax-loading {
	display: none !important;
}

.amy-productcountdown .product-item .product-buttons a.compare {
	margin-right: 0;
}

.amy-productcountdown .product-item .product-buttons a.compare:before {
	content: "\f074";
}

.amy-productcountdown.default {
	background: #9ac100;
	color: #ffffff;
}

.amy-productcountdown.default .product-item .saleup {
	color: #e5e5e5;
}

.amy-productcountdown.default .product-item .saleup .roundprice {
	color: #ffffff;
}

.amy-productcountdown.default .product-item .product-description ul li:before {
	content: "• ";
	color: #fff;
}

.amy-productcountdown.default .product-item .price del .amount {
	color: #e5e5e5;
}

.amy-productcountdown.default .product-item .price ins {
	text-decoration: none;
}

.amy-productcountdown.default .product-item .price ins .amount {
	color: #f05a29;
}

.amy-productcountdown.default .product-item .product-buttons:after {
	border-top: 1px dotted #fff;
}

.amy-productcountdown.default .product-item .product-buttons .add_to_cart_button {
	font-size: 0;
	background: #fff;
	color: #9ac100;
	display: inline-block;
	width: 36px;
	height: 36px;
	line-height: 36px;
	text-align: center;
	vertical-align: middle;
	border: 1px solid #9ac100;
	margin-right: 10px;
	border-radius: 50%;
	z-index: 1;
}

.amy-productcountdown.default .product-item .product-buttons .add_to_cart_button:before {
	font-family: FontAwesome;
	font-size: 14px;
}

.amy-productcountdown.default .product-item .product-buttons .add_to_cart_button:hover {
	background: #9ac100;
	border-color: #9ac100;
	color: #fff;
}

.amy-productcountdown.default .product-item .product-buttons a.add_to_cart_button {
	width: 40px;
	height: 40px;
	line-height: 40px;
	padding: 0;
	position: relative;
	z-index: 9;
}

.amy-productcountdown.default .product-item .product-buttons a.add_to_cart_button.loading {
	width: 40px !important;
	height: 40px !important;
	line-height: 40px !important;
	font-family: FontAwesome;
	animation: spinner 1.5s linear infinite !important;
	-webkit-animation: spinner 1.5s linear infinite !important;
}

.amy-productcountdown.default .product-item .product-buttons a.add_to_cart_button.loading:before {
	content: "\f021" !important;
	font-size: 14px;
}

.amy-productcountdown.default .product-item .product-buttons a.add_to_cart_button:before {
	content: "\f291";
	font-size: 15px;
}

.amy-productcountdown.default .product-item .product-buttons .added_to_cart.wc-forward:hover {
	color: #fda901;
}

.amy-productcountdown.default .product-item .product-buttons .compare-button {
	display: inline-block;
	margin-bottom: 0;
}

.amy-productcountdown.default .product-item .product-buttons .yith-wcwl-add-to-wishlist a.add_to_wishlist,
.amy-productcountdown.default .product-item .product-buttons .yith-wcwl-wishlistaddedbrowse a,
.amy-productcountdown.default .product-item .product-buttons .yith-wcwl-wishlistexistsbrowse a,
.amy-productcountdown.default .product-item .product-buttons a.compare {
	font-size: 0;
	background: #fff;
	color: #9ac100;
	display: inline-block;
	width: 36px;
	height: 36px;
	line-height: 36px;
	text-align: center;
	vertical-align: middle;
	border: 1px solid #9ac100;
	margin-right: 10px;
	border-radius: 50%;
	z-index: 1;
}

.amy-productcountdown.default .product-item .product-buttons .yith-wcwl-add-to-wishlist a.add_to_wishlist:before,
.amy-productcountdown.default .product-item .product-buttons .yith-wcwl-wishlistaddedbrowse a:before,
.amy-productcountdown.default .product-item .product-buttons .yith-wcwl-wishlistexistsbrowse a:before,
.amy-productcountdown.default .product-item .product-buttons a.compare:before {
	font-family: FontAwesome;
	font-size: 14px;
}

.amy-productcountdown.default .product-item .product-buttons .yith-wcwl-add-to-wishlist a.add_to_wishlist:hover,
.amy-productcountdown.default .product-item .product-buttons .yith-wcwl-wishlistaddedbrowse a:hover,
.amy-productcountdown.default .product-item .product-buttons .yith-wcwl-wishlistexistsbrowse a:hover,
.amy-productcountdown.default .product-item .product-buttons a.compare:hover {
	background: #9ac100;
	color: #fff;
}

.amy-productcountdown.default .product-item .product-buttons .yith-wcwl-wishlistaddedbrowse .feedback,
.amy-productcountdown.default .product-item .product-buttons .yith-wcwl-wishlistexistsbrowse .feedback {
	display: none;
}

.amy-productcountdown.default .product-item .product-buttons .yith-wcwl-wishlistaddedbrowse a,
.amy-productcountdown.default .product-item .product-buttons .yith-wcwl-wishlistexistsbrowse a {
	color: #fda901;
	border-color: #fda901;
}

.amy-productcountdown.default .product-item .product-buttons .yith-wcwl-wishlistaddedbrowse a:hover,
.amy-productcountdown.default .product-item .product-buttons .yith-wcwl-wishlistexistsbrowse a:hover {
	border-color: #9ac100;
}

.amy-productcountdown.default .product-item .product-buttons .yith-wcwl-add-to-wishlist {
	margin-top: 0;
	margin-right: -4px;
	display: inline-block;
}

.amy-productcountdown.default .product-item .product-buttons .yith-wcwl-add-to-wishlist a.add_to_wishlist:before,
.amy-productcountdown.default .product-item .product-buttons .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a:before,
.amy-productcountdown.default .product-item .product-buttons .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a:before {
	content: "\f004";
}

.amy-productcountdown.default .product-item .product-buttons .yith-wcwl-add-to-wishlist .ajax-loading {
	display: none !important;
}

.amy-productcountdown.default .product-item .product-buttons a.compare {
	margin-right: 0;
}

.amy-productcountdown.default .product-item .product-buttons a.compare:before {
	content: "\f074";
}

.amy-productcountdown.default .product-time {
	background: transparent;
	border-radius: 0;
}

.amy-productcountdown.default .product-time ul {
	margin: 0;
	padding: 0;
}

.amy-productcountdown.default .product-time li {
	list-style: none;
	display: block;
	padding: 5px 18px;
	margin: 0 0 20px 0;
	text-align: center;
	font-size: 15px;
	font-family: ABeeZee, "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: #9ac100;
	border-bottom: 2px solid #9ac100;
	border: 2px solid #9ac100;
	background: #ffffff;
	border-radius: 10px;
	border-bottom-left-radius: 0;
	color: #666666;
}

.amy-productcountdown.default .product-time li:last-child {
	border-bottom: 2px solid #9ac100;
}

.amy-productcountdown.default .product-time li span {
	display: block;
	font-size: 26px;
	font-weight: 700;
	color: #9ac100;
	font-family: Dosis, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/**
 * --------------------------------------------------------
 * 4.6. TEAM
 * --------------------------------------------------------
 */

.amy-organic-team {
	padding: 0;
}

.amy-organic-team .amy-member {
	text-align: center;
	margin-bottom: 30px;
}

.amy-organic-team .amy-member .entry-avatar {
	max-height: 203px;
	overflow: hidden;
}

.amy-organic-team .amy-member .entry-avatar img {
	border-radius: 50%;
	height: 264px;
	width: 264px;
	border: 3px solid #9ac100;
}

.amy-organic-team .amy-member .entry-content .entry-name {
	color: #ffffff;
	font-size: 18px;
	font-weight: 700;
}

.amy-organic-team .amy-member .entry-content .entry-position {
	color: #d7e894;
	font-size: 14px;
	text-transform: none;
}

.amy-organic-team .amy-member .entry-content .social {
	margin-top: 10px;
}

.amy-organic-team .amy-member .entry-content .social ul {
	padding: 0;
	margin: 0;
}

.amy-organic-team .amy-member .entry-content .social ul li {
	list-style: none;
	display: inline;
}

.amy-organic-team .amy-member .entry-content .social ul li a {
	color: #ffffff;
	display: inline-block;
	margin: 0 10px;
	font-size: 16px;
}

.amy-organic-team .amy-member .entry-content .social ul li a:hover {
	color: #fda901;
}

/**
 * --------------------------------------------------------
 * 4.7. TESTIMONIALS
 * --------------------------------------------------------
 */

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

.amy-testimonials.slide {
	margin-bottom: 25px;
	padding-bottom: 35px;
}

.amy-testimonials.slide.row {
	margin-right: -45px;
	margin-left: -45px;
}

.amy-testimonials.slide .amy-item {
	margin-bottom: 0;
	padding-left: 45px;
	padding-right: 45px;
}

.amy-testimonials.slide .amy-item.one-column {
	padding: 0 200px;
}

@media (max-width: 768px) {
	.amy-testimonials.slide .amy-item.one-column {
		padding: 0 20px;
	}
}

.amy-testimonials.slide .amy-item.one-column.avatar-left {
	position: relative;
}

.amy-testimonials.slide .amy-item.one-column.avatar-left .amy-testimonial-avatar {
	position: absolute;
	left: 115px;
	top: 40px;
}

.amy-testimonials.slide .amy-item.one-column.avatar-right {
	position: relative;
}

.amy-testimonials.slide .amy-item.one-column.avatar-right .amy-testimonial-avatar {
	position: absolute;
	right: 115px;
	top: 40px;
}

.amy-testimonials.slide .amy-item.one-column .amy-testimonial-avatar {
	margin-bottom: 15px;
}

.amy-testimonials.slide .amy-item.one-column .amy-testimonial-avatar img {
	margin: 0 auto;
	width: 68px;
	height: 68px;
}

.amy-testimonials.slide .amy-item.one-column .amy-testimonial-testimonial {
	font-style: italic;
	font-size: 18px;
	margin-bottom: 25px;
}

.amy-testimonials.slide .amy-item.one-column .amy-testimonial-testimonial .fa {
	margin-bottom: 10px;
}

.amy-testimonials.slide .amy-item.one-column .amy-testimonial-user .amy-testimonial-author .amy-testimonial-name {
	font-family: Dosis, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: 700;
	font-size: 20px;
	margin-right: 5px;
	position: relative;
}

.amy-testimonials.slide .amy-item.one-column .amy-testimonial-user .amy-testimonial-author .amy-testimonial-name:before {
	content: "_";
	position: absolute;
	right: -3px;
	bottom: 0;
}

.amy-testimonials.slide .amy-item.one-column .amy-testimonial-user .amy-testimonial-author .amy-testimonial-position {
	font-family: ABeeZee, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-style: italic;
	font-size: 15px;
	color: #e5e5e5;
}

.amy-testimonials.slide .amy-item.multi-column.avatar-right .amy-testimonial-content {
	width: 78%;
	text-align: right;
}

.amy-testimonials.slide .amy-item.multi-column .amy-testimonial-content header {
	font-family: Dosis, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: bold;
	font-size: 20px;
	color: #fff;
	text-transform: uppercase;
	margin-bottom: 30px;
}

.amy-testimonials.slide .amy-item.multi-column .amy-testimonial-content .amy-testimonial-name {
	display: inline-block;
	position: relative;
}

.amy-testimonials.slide .amy-item.multi-column .amy-testimonial-content .amy-testimonial-name:after {
	content: "";
	width: 40px;
	height: 2px;
	background: #ffffff;
	position: absolute;
	left: 0;
	bottom: -15px;
}

.amy-testimonials.slide .amy-item.multi-column .amy-testimonial-content .position {
	color: #c6e54a;
}

.amy-testimonials.slide .amy-item.multi-column .amy-testimonial-testimonial {
	margin-bottom: 15px;
}

.amy-testimonials.slide .amy-item.multi-column .amy-testimonial-testimonial .fa {
	color: #c6e54a;
	font-size: 20px;
}

.amy-testimonials.slide .amy-item.multi-column .amy-testimonial-avatar img {
	border: 2px solid #ffffff;
}

.amy-testimonials.slide .amy-item.multi-column.avatar-left .amy-testimonial-content {
	margin-left: 120px;
}

.amy-testimonials.slide .amy-item.multi-column.avatar-left .amy-testimonial-avatar {
	margin-right: 20px;
}

.amy-testimonials.slide .amy-item.multi-column.avatar-left .amy-testimonial-avatar img {
	border: 2px solid #ffffff;
}

.amy-testimonials.slide .slick-dots {
	bottom: 0;
}

.amy-testimonials.slide .slick-dots li {
	width: 10px;
	height: 10px;
	margin: 0 5px;
}

.amy-testimonials.slide .slick-dots li.slick-active button {
	background: #fff;
}

.amy-testimonials.slide .slick-dots li button {
	width: 10px;
	height: 10px;
	background: rgba(255, 255, 255, 0.3);
}

.amy-testimonials.slide .slick-dots li button:before {
	content: none;
}

.amy-testimonials .slick-arrow {
	display: none !important;
}

.amy-testimonials.list .amy-item {
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px dotted #f9f9f9;
}

.amy-testimonials.list .amy-item .amy-testimonial-right.right {
	width: 89%;
	float: left;
	margin-right: 0;
	text-align: right;
}

.amy-testimonials .amy-testimonial-avatar img {
	border-radius: 50% !important;
}

.amy-testimonials.grid .amy-testimonial-content.right {
	width: 76%;
	text-align: right;
}

.slidesync {
	text-align: center;
}

.slidesync .amy-testimonials-nav {
	width: 500px;
	margin: 0 auto 20px auto;
}

@media (max-width: 480px) {
	.slidesync .amy-testimonials-nav {
		width: 100%;
	}
}

.slidesync .amy-testimonials-nav .slick-arrow {
	display: none !important;
}

.slidesync .amy-testimonials-nav .slick-dots {
	display: none !important;
}

.slidesync .amy-testimonials-nav .amy-slide-item {
	width: 30%;
}

.slidesync .amy-testimonials-nav .amy-slide-item .amy-testimonial-avatar {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	margin-top: 10px;
	margin-right: auto;
	margin-left: auto;
	cursor: pointer;
	opacity: 0.5;
}

.slidesync .amy-testimonials-nav .amy-slide-item .amy-testimonial-avatar img {
	width: 100%;
	height: 100%;
}

.slidesync .amy-testimonials-nav .amy-slide-item.slick-active.slick-current .amy-testimonial-avatar {
	opacity: 1;
	margin-top: 0;
	width: 120px;
	height: 120px;
}

.slidesync .amy-slider-for {
	padding: 0 20px;
}

.slidesync .amy-slider-for .amy-testimonial-testimonial {
	font-size: 18px;
}

.slidesync .amy-slider-for .amy-testimonial-name {
	font-size: 20px;
	color: #fff;
	font-family: Dosis, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: bold;
	position: relative;
	margin-top: 30px;
}

.slidesync .amy-slider-for .amy-testimonial-name:before {
	content: "";
	width: 50px;
	height: 2px;
	background: #9ac100;
	position: absolute;
	top: -10px;
	left: 0;
	right: 0;
	margin: 0 auto;
	display: inline-block;
}

.slidesync .amy-slider-for .amy-testimonial-name .position {
	font-family: ABeeZee, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 15px;
	color: #999;
}

.slidesync .amy-slider-for .slick-dots {
	width: 98%;
	bottom: -25px;
}

.slidesync .amy-slider-for .slick-dots li.slick-active button {
	background: #fff;
}

.slidesync .amy-slider-for .slick-dots li button {
	width: 10px;
	height: 10px;
	background: rgba(255, 255, 255, 0.3);
}

.slidesync .amy-slider-for .slick-dots li button:before {
	content: none;
}

.amy-testimonials.style4 {
	margin: 0 -40px;
}

@media (max-width: 980px) {
	.amy-testimonials.style4 {
		padding: 0 20px;
	}
}

.amy-testimonials.style4 .amy-item {
	padding: 0 40px;
}

.amy-testimonials.style4 .amy-item.slick-center {
	position: relative;
}

.amy-testimonials.style4 .amy-item.slick-center:before {
	content: url("../images/line-ver.png");
	position: absolute;
	left: 0;
	top: 0;
}

.amy-testimonials.style4 .amy-item.slick-center:after {
	content: url("../images/line-ver.png");
	position: absolute;
	right: 0;
	top: 0;
}

.amy-testimonials.style4 .amy-item .amy-item-inner {
	position: relative;
	padding-top: 20px;
}

.amy-testimonials.style4 .amy-item .amy-item-inner .amy-testimonial-avatar {
	width: 86px;
	height: 86px;
	border-radius: 50%;
	margin-bottom: 10px;
}

.amy-testimonials.style4 .amy-item .amy-item-inner .amy-testimonial-avatar img {
	width: 100%;
	height: 100%;
}

.amy-testimonials.style4 .amy-item .amy-item-inner .amy-testimonial-name {
	font-size: 18px;
	text-transform: uppercase;
	font-family: Dosis, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: bold;
}

.amy-testimonials.style4 .amy-item .amy-item-inner .position {
	font-size: 14px;
	font-style: italic;
	color: #c6e54a;
	text-transform: capitalize;
	display: inline-block;
	margin-bottom: 13px;
}

.amy-testimonials.style4 .amy-item .amy-item-inner .amy-testimonial-testimonial {
	max-height: 130px;
	line-height: 26px;
	overflow: hidden;
}

.amy-testimonials.style4 .slick-dots li button::before {
	font-size: 40px;
	color: #fff;
	opacity: 0.6;
}

.amy-testimonials.style4 .slick-dots li.slick-active button:before {
	opacity: 1;
}

@media (max-width: 640px) {
	.amy-testimonials.style5 .amy-item .amy-item-inner {
		padding: 0 15px;
		text-align: center;
	}
}

.amy-testimonials.style5 .amy-item .amy-item-inner .amy-testimonial-avatar {
	width: 160px;
	height: 160px;
	border-radius: 50%;
	float: left;
	margin-right: 25px;
	margin-bottom: 30px;
}

@media (max-width: 640px) {
	.amy-testimonials.style5 .amy-item .amy-item-inner .amy-testimonial-avatar {
		float: none;
		margin: 0 auto;
	}
}

.amy-testimonials.style5 .amy-item .amy-item-inner .amy-testimonial-avatar img {
	width: 100%;
	height: 100%;
}

.amy-testimonials.style5 .amy-item .amy-item-inner .amy-testimonial-content {
	color: #666;
	padding-top: 15px;
}

.amy-testimonials.style5 .amy-item .amy-item-inner .amy-testimonial-content .amy-testimonial-testimonial {
	max-height: 90px;
	overflow: hidden;
}

.amy-testimonials.style5 .amy-item .amy-item-inner .amy-testimonial-content .amy-testimonial-name {
	font-size: 18px;
	font-family: Dosis, "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: #333;
	text-transform: uppercase;
}

.amy-testimonials.style5 .amy-item .amy-item-inner .amy-testimonial-content .position {
	font-size: 14px;
	font-style: italic;
}

.amy-testimonials.style5 .slick-arrow {
	display: inline-block !important;
	width: 40px;
	height: 40px;
	background-color: #fff;
	top: 56%;
}

@media (max-width: 992px) {
	.amy-testimonials.style5 .slick-arrow {
		display: none !important;
	}
}

.amy-testimonials.style5 .slick-arrow.slick-next {
	right: auto;
	left: -188px;
}

.amy-testimonials.style5 .slick-arrow.slick-next:before {
	display: inline-block;
	font-family: FontAwesome;
	font-size: 14px;
	line-height: 1;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\f061";
	color: #b0b0b0;
}

.amy-testimonials.style5 .slick-arrow.slick-prev {
	left: -235px;
}

.amy-testimonials.style5 .slick-arrow.slick-prev:before {
	display: inline-block;
	font-family: FontAwesome;
	font-size: 14px;
	line-height: 1;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\f060";
	color: #b0b0b0;
}

/**
 * --------------------------------------------------------
 * 4.8. HEADING
 * --------------------------------------------------------
 */

.amy-organic-heading {
	text-align: center;
	margin-bottom: 50px;
}

@media (max-width: 768px) {
	.amy-organic-heading {
		margin-bottom: 30px;
	}
}

@media (max-width: 480px) {
	.amy-organic-heading {
		margin-bottom: 15px;
	}
}

.amy-organic-heading.mb20 {
	margin-bottom: 20px;
}

.amy-organic-heading h3 {
	margin-top: 0;
	line-height: 82%;
}

.amy-organic-heading p {
	margin-bottom: 0;
}

.amy-why-choose {
	margin: 0 -10px;
}

.amy-why-choose .vc_column_container {
	padding: 0 10px;
}

/**
 * --------------------------------------------------------
 * 4.9. IMAGE HOVER
 * --------------------------------------------------------
 */

.amy-organic-image-hover {
	text-align: center;
}

@media (max-width: 768px) {
	.amy-organic-image-hover {
		margin-bottom: 20px;
	}
}

.amy-organic-image-hover .hover-img {
	display: none;
}

.amy-organic-image-hover .active-img {
	display: inline-block;
}

.amy-organic-image-hover:hover .hover-img {
	display: inline-block;
}

.amy-organic-image-hover:hover .active-img {
	display: none;
}

/**
 * --------------------------------------------------------
 * 4.10. CUSTOM CONTENT
 * --------------------------------------------------------
 */

.amy-organic-custom-content .amy-content br {
	margin-bottom: 15px;
}

.amy-organic-custom-content .amy-shortcode-title {
	position: relative;
	display: inline-block;
	margin: 0 0 60px 0;
}

.amy-organic-custom-content .title-first {
	font-size: 35px;
	font-weight: bold;
	color: #333;
	display: inline-block;
}

.amy-organic-custom-content .title-last {
	text-align: right;
	font-size: 35px;
	font-weight: bold;
	color: #9ac100;
	position: absolute;
	top: 38px;
	right: -70px;
}

.amy-organic-custom-content .readmore {
	display: block;
	font-size: 18px;
	font-weight: bold;
	color: #9ac100;
	font-family: Dosis, "Helvetica Neue", Helvetica, Arial, sans-serif;
	position: relative;
	padding: 0 25px;
	margin-top: 30px;
}

.amy-organic-custom-content .readmore:before {
	position: absolute;
	left: 0;
	top: 5px;
	content: "\f178";
	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;
}

.amy-organic-custom-content .readmore:hover {
	color: #fda901;
}

.home-style4.amy-organic-custom-content .amy-shortcode-title {
	margin: 0 0 20px 0;
}

.home-style4.amy-organic-custom-content .title-last {
	position: initial;
}

.featured-category {
	padding-bottom: 32px;
}

.featured-category .cat-item-wrap {
	max-width: 318px;
	position: relative;
}

.featured-category .cat-item-wrap>a {
	display: inline-block;
	position: relative;
	overflow: hidden;
}

.featured-category .cat-item-wrap>a:after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.5);
}

.featured-category .cat-item-wrap>a img {
	transition: all 0.2s ease-in-out;
}

.featured-category .cat-item-wrap>a:hover img {
	transform: scale(1.1, 1.1);
}

.featured-category .cat-item-wrap .cat-content {
	position: absolute;
	bottom: 0;
	left: 0;
	color: #fff;
	padding: 0 30px 45px 30px;
}

.featured-category .cat-item-wrap .cat-content h4 {
	font-size: 20px;
	margin: 0 0 5px 0;
}

.featured-category .cat-item-wrap .cat-content h4 a {
	color: #fff;
}

.featured-category .cat-item-wrap .cat-content h4 a:hover {
	color: #9ac100;
}

.featured-category .cat-item-wrap .cat-content h4 a:after {
	content: none;
}

.featured-category .cat-item-wrap .cat-icon {
	position: absolute;
	bottom: -32px;
	left: 40px;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background-color: #fff;
	text-align: center;
	display: inline-block;
	line-height: 60px;
}

.featured-category .cat-item-wrap .cat-icon img {
	max-width: 33px;
}

.product-grid .product-grid-inner .amy-item {
	margin-bottom: 5px;
}

.product-grid .product-grid-inner .amy-item .product {
	text-align: center;
	position: relative;
}

.product-grid .product-grid-inner .amy-item .product .product-description .product-title {
	margin-top: 0;
	margin-bottom: 5px;
}

.product-grid .product-grid-inner .amy-item .product .product-description .product-title a {
	color: #333;
	font-size: 18px;
}

.product-grid .product-grid-inner .amy-item .product .product-description .product-title a:hover {
	color: #9ac100;
}

.product-grid .product-grid-inner .amy-item .product .product-description .price .amount {
	font-family: Dosis, "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: #fda901;
	font-size: 20px;
	font-weight: 600;
}

.product-grid .product-grid-inner .amy-item .product .product-hover {
	position: absolute;
	top: 0;
	left: 0;
}

.product-grid .product-grid-inner .amy-item .product .product-hover .add_to_cart_button,
.product-grid .product-grid-inner .amy-item .product .product-hover .add_to_cart_button.loading,
.product-grid .product-grid-inner .amy-item .product .product-hover .added_to_cart,
.product-grid .product-grid-inner .amy-item .product .product-hover .yith-wcwl-add-to-wishlist a.add_to_wishlist,
.product-grid .product-grid-inner .amy-item .product .product-hover .yith-wcwl-wishlistaddedbrowse a,
.product-grid .product-grid-inner .amy-item .product .product-hover .yith-wcwl-wishlistexistsbrowse a,
.product-grid .product-grid-inner .amy-item .product .product-hover a.compare {
	border-color: #9ac100;
}

.product-grid .product-grid-inner .amy-item .product .product-hover .add_to_cart_button,
.product-grid .product-grid-inner .amy-item .product .product-hover .add_to_cart_button.loading,
.product-grid .product-grid-inner .amy-item .product .product-hover .added_to_cart {
	margin-right: 5px;
}

.product-grid .product-grid-inner .amy-item .product .product-hover .yith-wcwl-add-to-wishlist a.add_to_wishlist,
.product-grid .product-grid-inner .amy-item .product .product-hover .yith-wcwl-wishlistaddedbrowse a,
.product-grid .product-grid-inner .amy-item .product .product-hover .yith-wcwl-wishlistexistsbrowse a {
	width: 32px;
	height: 32px;
	line-height: 32px;
}

.instagram-inner .wrap-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: -ms-flexbox;
	display: flex;
}

.instagram-inner .wrap-list li {
	margin-bottom: 0;
	width: 16.666666667%;
}

.instagram-inner .wrap-list li img {
	width: 100%;
	height: 100%;
}

.instagram-inner .wrap-list li a {
	display: inline-block;
	position: relative;
	transition: all 0.2s ease-in-out;
	width: 100%;
	height: 100%;
}

.instagram-inner .wrap-list li a:hover:before {
	content: "\f16d";
	display: inline-block;
	font-family: FontAwesome;
	font-size: 14px;
	line-height: 1;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	position: absolute;
	left: 0;
	top: calc(50% - 20px);
	right: 0;
	bottom: 0;
	font-size: 40px;
	margin: 0 auto;
	text-align: center;
	color: #fff;
	transition: all 0.2s ease-in-out;
}

.instagram-inner .wrap-list li a:hover:after {
	content: '';
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.5);
	transition: all 0.2s ease-in-out;
}