/*
    Name: Woodsman
    Description: Exclusive Coming Soon WordPress Theme
    Version: 4.0.1
    Author: Mountain-Themes
    Author URL: https://themeforest.net/user/mountain-themes
    Woodsman © 2025. Design & Coded by Mountain-Themes.

    TABLE OF CONTENTS
    ---------------------------
     1. General
     2. Header
     3. Cover Section
     4. Services Section
	 5. Team Section
     6. Subscribe Section
     7. Contact Section
     8. Google map Section
	 9. Blog
     10. Footer
     11. WooCommerce
     12. Responsive CSS
*/

/* ================================= */
/* :::::::::: 1. General ::::::::::: */
/* ================================= */

html,
body {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	color: #000;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	font-family: "Exo", Helvetica, Arial, sans-serif;
	font-size: 13px;
	line-height: 1.9;
}

/* Link */

a,
a:active,
a:focus,
a:active {
	text-decoration: none !important;
	color: #000;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

a:hover,
a:focus,
input:focus,
input:hover,
select:focus,
select:hover,
select:active,
textarea:focus,
textarea:hover,
button:focus {
	outline: none;
	color: #ababab;
}

/* Image */

img {
	-ms-interpolation-mode: bicubic;
	border: 0;
	height: auto;
	max-width: 100%;
	vertical-align: middle;
}

/* Paragraph */

p {
	margin: 0 0 1rem;
}

p:empty {
	display: none;
}

/* Strong */

strong {
	font-weight: 600;
}


/* Mark */

mark {
	background-color: #000000;
}

/* Headings */

h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Aldrich', sans-serif;
	font-weight: 400;
	margin-bottom: .5rem;
	padding: 0;
}

/* List */

ul,
ol {
	list-style-position: inside;
}

/* Definition list */

dl {
	margin: 0;
}

dt {
	font-size: 1.25rem;
	font-weight: 600;
	color: #000000;
}

dd {
	margin: .3125rem 0 0 0;
	padding: 0;
}

dd+dt {
	margin-top: 1.875rem;
}


/* Divider */

hr {
	margin: 1.875rem 0;
	border: none;
	border-bottom: 1px solid #f5f5f5;
}


/* Address */

address {
	margin: 0 0 30px;
	color: #333;
	font-style: italic;
	font-weight: 400;
}


/* Blockquote */

blockquote {
	border-left: 2px solid #000000;
	padding: 25px;
	font-style: italic;
}

blockquote p {
	margin-bottom: 0;
}

cite {
	display: block;
	color: #333;
	font-size: 13px;
	font-style: normal;
	text-transform: uppercase;
}


/* Preformatted */

code,
kbd {
	font-family: Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
	font-size: 87.5%;
	padding: .3125rem .5rem;
	color: #000000;
	border-radius: 0;
	background-color: #f5f5f5;
}

a>code {
	color: #000000;
}

pre {
	font-family: Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
	clear: both;
	overflow: auto;
	max-width: 100%;
	margin: 0 0 1.875rem;
	padding: 2.1875rem;
	white-space: pre-wrap;
	-moz-tab-size: 4;
	-o-tab-size: 4;
	tab-size: 4;
	color: #000000;
	background-color: #f5f5f5;
}

/* Form | Input | Textarea | Select */

form {
	max-width: 100%;
}

input[type='text'],
input[type='date'],
input[type='email'],
input[type='password'],
input[type='tel'],
input[type='url'],
input[type='search'],
input[type='number'],
textarea,
select {
	display: block;
	width: 100%;
	margin: 0;
	padding: 10px 15px 10px 15px;
	color: #000000;
	border: 1px solid #ededed;
	outline: none;
	font-size: 13px;
	background-color: transparent;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

select {
	color: #000000;
	background-image: url('data:image/svg+xml;utf8,<svg fill=\'%23999999\' height=\'24\' viewBox=\'0 0 24 24\' width=\'24\' xmlns=\'http://www.w3.org/2000/svg\'><path d=\'M7 10l5 5 5-5z\'/><path d=\'M0 0h24v24H0z\' fill=\'none\'/></svg>');
	background-repeat: no-repeat;
	background-position: right 16px bottom 50%;
	background-size: 18px 18px;
}

textarea {
	width: 100%;
	max-width: 100%;
}

button:focus,
input[type='submit']:focus {
	outline: none;
}

input[type='text'].placeholder,
input[type='date'].placeholder,
input[type='email'].placeholder,
input[type='password'].placeholder,
input[type='tel'].placeholder,
input[type='url'].placeholder,
input[type='search'].placeholder,
input[type='number'].placeholder,
textarea.placeholder,
select.placeholder {
	opacity: 1;
	color:#939393;
}

input[type='text']:-moz-placeholder,
input[type='date']:-moz-placeholder,
input[type='email']:-moz-placeholder,
input[type='password']:-moz-placeholder,
input[type='tel']:-moz-placeholder,
input[type='url']:-moz-placeholder,
input[type='search']:-moz-placeholder,
input[type='number']:-moz-placeholder,
textarea:-moz-placeholder,
select:-moz-placeholder {
	opacity: 1;
	color:#939393;
}

input[type='text']::-moz-placeholder,
input[type='date']::-moz-placeholder,
input[type='email']::-moz-placeholder,
input[type='password']::-moz-placeholder,
input[type='tel']::-moz-placeholder,
input[type='url']::-moz-placeholder,
input[type='search']::-moz-placeholder,
input[type='number']::-moz-placeholder,
textarea::-moz-placeholder,
select::-moz-placeholder {
	opacity: 1;
	color:#939393;
}

input[type='text']:-ms-input-placeholder,
input[type='date']:-ms-input-placeholder,
input[type='email']:-ms-input-placeholder,
input[type='password']:-ms-input-placeholder,
input[type='tel']:-ms-input-placeholder,
input[type='url']:-ms-input-placeholder,
input[type='search']:-ms-input-placeholder,
input[type='number']:-ms-input-placeholder,
textarea:-ms-input-placeholder,
select:-ms-input-placeholder {
	opacity: 1;
	color:#939393;
}

input[type='text']::-webkit-input-placeholder,
input[type='date']::-webkit-input-placeholder,
input[type='email']::-webkit-input-placeholder,
input[type='password']::-webkit-input-placeholder,
input[type='tel']::-webkit-input-placeholder,
input[type='url']::-webkit-input-placeholder,
input[type='search']::-webkit-input-placeholder,
input[type='number']::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
select::-webkit-input-placeholder {
	opacity: 1;
	color:#939393;
}

input[type='text']:focus.placeholder,
input[type='date']:focus.placeholder,
input[type='email']:focus.placeholder,
input[type='password']:focus.placeholder,
input[type='tel']:focus.placeholder,
input[type='url']:focus.placeholder,
input[type='search']:focus.placeholder,
input[type='number']:focus.placeholder,
textarea:focus.placeholder,
select:focus.placeholder {
	opacity: 0;
}

input[type='text']:focus:-moz-placeholder,
input[type='date']:focus:-moz-placeholder,
input[type='email']:focus:-moz-placeholder,
input[type='password']:focus:-moz-placeholder,
input[type='tel']:focus:-moz-placeholder,
input[type='url']:focus:-moz-placeholder,
input[type='search']:focus:-moz-placeholder,
input[type='number']:focus:-moz-placeholder,
textarea:focus:-moz-placeholder,
select:focus:-moz-placeholder {
	opacity: 0;
}

input[type='text']:focus::-moz-placeholder,
input[type='date']:focus::-moz-placeholder,
input[type='email']:focus::-moz-placeholder,
input[type='password']:focus::-moz-placeholder,
input[type='tel']:focus::-moz-placeholder,
input[type='url']:focus::-moz-placeholder,
input[type='search']:focus::-moz-placeholder,
input[type='number']:focus::-moz-placeholder,
textarea:focus::-moz-placeholder,
select:focus::-moz-placeholder {
	opacity: 0;
}

input[type='text']:focus:-ms-input-placeholder,
input[type='date']:focus:-ms-input-placeholder,
input[type='email']:focus:-ms-input-placeholder,
input[type='password']:focus:-ms-input-placeholder,
input[type='tel']:focus:-ms-input-placeholder,
input[type='url']:focus:-ms-input-placeholder,
input[type='search']:focus:-ms-input-placeholder,
input[type='number']:focus:-ms-input-placeholder,
textarea:focus:-ms-input-placeholder,
select:focus:-ms-input-placeholder {
	opacity: 0;
}

input[type='text']:focus::-webkit-input-placeholder,
input[type='date']:focus::-webkit-input-placeholder,
input[type='email']:focus::-webkit-input-placeholder,
input[type='password']:focus::-webkit-input-placeholder,
input[type='tel']:focus::-webkit-input-placeholder,
input[type='url']:focus::-webkit-input-placeholder,
input[type='search']:focus::-webkit-input-placeholder,
input[type='number']:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder,
select:focus::-webkit-input-placeholder {
	opacity: 0;
}


/* Container & Wrapper */

#wrapper {
	padding: 80px 0;
}

#wrapper.custom-wrapper {
	padding: 0 !important;
}

/* Spacing */

.woodsman-padding-right {
	padding-right: 3%
}

.woodsman-padding-left {
	padding-left: 3%;
}

/* Page loader */

.page-loader {
	background: #fff;
	height: 100%;
	width: 100%;
	position: fixed;
	z-index: 99999;
	top: 0;
}

.page-loader .page-inner-loader {
    width: 100%;
    height: 100%;
}

.page-loader .page-inner-loader .loader-icon {
	display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;

}

/* Page Error */

.error-page {
	position: relative;
	text-align: center;
	line-height: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	align-content: center;
	justify-content: center;
}

.error-page:before {
	color: #f9f9f9;
	content: attr(data-error);
	font-size: 30vw;
	font-weight: 700;
	width: 100%;
}

.error-page a i {
	padding-left: 5px;
}

.error-page a {
	margin-top: 10px;
}


/* Load More Button */

.load-more,
.load-more-shop {
	margin: 55px;
	display: flex;
    text-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.load-more a,
.load-more-shop a {
	color: #ffffff;
	text-decoration: none;
	font-weight: 400;
	background-color: #2CC9B4;
	cursor: pointer;
	border: 2px solid #2CC9B4;
	padding: 14px 22px;
	line-height: 1;
    display: flex;
    text-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.load-more a:hover,
.load-more-shop a:hover {
	background: rgba(22, 182, 234, 0) !important;
	color: #2CC9B4;
}

.load-more a.disabled,
.load-more-shop a.disabled {
	cursor: not-allowed;
	background: transparent !important;
	color: #2CC9B4;
}

.load-more a.disabled:hover,
.load-more-shop a.disabled:hover {
	background: transparent !important;
	color: #2CC9B4;
}

.load-more a.loaded,
.load-more-shop a.loaded {
	background: transparent !important;
	pointer-events: none;
	color: #2CC9B4;
}

.load-more a.loaded span,
.load-more-shop a.loaded span {
	margin-left: 5px;
}

.load-more a .fa-spin,
.load-more-shop a .fa-spin {
	display: none;
	color: #2CC9B4;
}

.load-more a.loaded .fa-spin,
.load-more-shop a.loaded .fa-spin {
	display: inline-flex;
}

.load-more i,
.load-more-shop i {
	-webkit-animation: fa-spin 1.2s infinite linear;
	animation: fa-spin 1.2s infinite linear
}

@-webkit-keyframes fa-spin {
	0% {
		transform: rotate(0);
	}

	100% {
		transform: rotate(360deg);
	}
}

@keyframes fa-spin {
	0% {
		transform: rotate(0);
	}

	100% {
		transform: rotate(360deg);
	}
}

.load-more a span,
.load-more-shop a span {
	opacity: 1.0;
	-webkit-transition: opacity .25s;
	-moz-transition: opacity .25s;
	-o-transition: opacity .25s;
	-ms-transition: opacity .25s;
	transition: opacity .25s;
}

/* ================================= */
/* :::::: 2. WordPress Core :::::::: */
/* ================================= */

/* WordPress API Elements */

.wp-caption {
	margin: 32px 0;
	font-size: 16px;
	text-align: center;
	font-style: italic;
	max-width: 100%;
}

.wp-caption p,
.wp-caption-text {
	margin: 0;
	margin-top: 5px;
}

.wp-caption-text,
.sticky,
.gallery-caption,
.bypostauthor,
.screen-reader-text {
	visibility: visible;
}

.screen-reader-text {
	display: none;
}

.aligncenter {
	margin: 32px auto;
	display: block;
}

.alignright {
	margin: 8px 0 8px 32px;
	float: right;
}

.alignleft {
	margin: 8px 32px 8px 0;
	float: left;
}

/* Sidebar */

.mt-widget {
	text-align: left;
	margin-bottom: 45px;
}

.mt-widget .woodsman-widget-title {
	color: #000000;
	font-weight: 500;
	margin-bottom: 30px;
	font-size: 1.2em;
}

.mt-widget img {
	max-width: 100%;
	height: auto;
}

.mt-widget ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.mt-widget .widget_categories ul ul,
.mt-widget .widget_categories ul ul ul,
.mt-widget .widget_categories ul ul ul ul,
.mt-widget .widget_pages ul ul,
.mt-widget .widget_pages ul ul ul,
.mt-widget .widget_pages ul ul ul ul,
.mt-widget .widget_nav_menu ul ul,
.mt-widget .widget_nav_menu ul ul ul,
.mt-widget .widget_nav_menu ul ul ul ul {
	margin-left: 15px;
}

.mt-widget .widget_categories a:before,
.mt-widget .widget_archive a:before,
.mt-widget .widget_pages a:before,
.mt-widget .widget_meta a:before,
.mt-widget .widget_recent_comments li:before,
.mt-widget .widget_recent_entries a:before,
.mt-widget .widget_nav_menu li:before {
	content: "\f101";
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1;
	font-family: "Font Awesome 6 Pro";
	margin-right: 10px;
	font-weight: 900;
}

.mt-widget .widget_archive li,
.mt-widget .widget_categories li,
.mt-widget .widget_links li,
.mt-widget .widget_meta li,
.mt-widget .widget_nav_menu li,
.mt-widget .widget_pages li,
.mt-widget .widget_recent_comments li,
.mt-widget .widget_recent_entries li {
	line-height: 2.7;
}


/* Widget: Search */

.search-widget,
.mt-widget .widget_search {
	background: none;
	padding: 0;
	box-shadow: none;
	position: relative;
}

.search-widget .input-group {
	width: 100%;
}

.search-widget input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]) {
	background-color: transparent;
	width: 100%;
	height: 45px;
	padding: 0 55px 0 15px !important;
	border: none !important;
	border-radius: 3px;
	box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.15);
	color: #000;
}

.search-widget button {
	background-color: transparent;
	color: #303133;
	top: 50%;
	right: 0;
	padding: 0 20px;
	position: absolute;
	border: none;
	height: 55px;
	font-size: 15px;
	cursor: pointer;
	transform: translateY(-50%);
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.search-widget button:hover {
	color: #afafaf;
}


/* Widget: Categories */

.mt-widget .widget_categories a:before {
	content: "\f101";
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1;
	font-family: "Font Awesome 6 Pro";
	margin-right: 10px;
	font-weight: 900;
}


/* Widget: Select */

.mt-widget select {
	display: block;
	padding: 6px 15px;
	margin: 0;
	width: 100%;
	border: 1px solid #eee;
	outline: none;
	box-shadow: none;
	padding-right: 35px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	box-shadow: none;
	border-radius: 3px;
	background-image: url('data:image/svg+xml;utf8,<svg fill=\'%23999999\' height=\'24\' viewBox=\'0 0 24 24\' width=\'24\' xmlns=\'http://www.w3.org/2000/svg\'><path d=\'M7 10l5 5 5-5z\'/><path d=\'M0 0h24v24H0z\' fill=\'none\'/></svg>');
	background-repeat: no-repeat;
	background-position: right 16px bottom 50%;
	background-size: 18px 18px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}


/* Widget: TagCloud */

.mt-widget .tagcloud a,
.footer .tagcloud a {
	display: -ms-inline-flexbox;
	display: inline-flex;
	padding: 10px 13px 10px 13px;
	margin: 3px 1px;
	font-size: 13px !important;
	color: #ffffff;
	background-color: #2CC9B4;
	border: 2px solid #2CC9B4;
	line-height: 1;
}

.mt-widget .tagcloud a:hover,
.footer .tagcloud a:hover {
	background: transparent!important;
	color: #2CC9B4;
}


/* Widget: Recent Post */

.mt-widget .woodsman_blog_recent_post {
	display: flex;
	margin-bottom: 30px;
}

.mt-widget .woodsman_blog_recent_post:last-child {
	margin-bottom: 0;
}

.mt-widget .woodsman_blog_recent_post .woodsman_blog_img {
	flex: 0 0 auto;
	margin-right: 20px;
	width: 90px;
	height: 80px;
	background-size: cover;
	background-position: center center;
	border-radius: 3px;
}

.mt-widget .woodsman_blog_recent_post .woodsman_blog_img img {
	-ms-interpolation-mode: bicubic;
	border: 0;
	height: auto;
	max-width: 100%;
	vertical-align: middle;
}

.mt-widget .woodsman_blog_recent_post .woodsman_blog_content span {
	color: #404040;
	font-size: 14px;
	margin: -5px 0 0px;
	display: block;
}

.mt-widget .woodsman_blog_recent_post .woodsman_blog_content h2 {
	font-size: 16px;
	color: #000000;
	font-weight: 500;
	margin: 0;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	line-height: 1.7;
}


/* Widget: Calendar */

.mt-widget .widget_calendar caption {
	padding: 0 0 15px;
	font-size: 15px;
	text-transform: uppercase;
	caption-side: top;
	text-align: center;
	color: #000;
}

.mt-widget .widget_calendar tbody a {
	display: block;
	font-weight: 600;
}

.mt-widget .widget_calendar .wp-calendar-nav {
	margin-top: 10px;
}

.mt-widget .widget_calendar .wp-calendar-nav-next {
	float: right;
}

.mt-widget .widget_calendar #wp-calendar>tfoot>tr>td {
	border: none;
	padding: 0;
	text-align: center;
}

.mt-widget .widget_calendar table#wp-calendar {
	margin-bottom: 0;
	border-collapse: collapse;
	border: none;
	width: 100%;
	max-width: 100%;
	margin: 0;
}

.mt-widget .widget_calendar #wp-calendar tbody td {
	text-align: center;
	border-top: none;
	padding: 8px;
}

.mt-widget .widget_calendar #wp-calendar tbody tr:nth-child(even) {
	background-color: #f9f9f9;
}

.mt-widget .widget_calendar #wp-calendar tbody td.pad {
	border: 0;
}

.mt-widget .widget_calendar #wp-calendar tbody td#today {
	color: #fff;
	background-color: #474747;
}

.mt-widget .widget_calendar #wp-calendar tbody td#today a {
	color: #fff;
}

.mt-widget .widget_calendar #wp-calendar tfoot td#prev a,
.mt-widget .widget_calendar #wp-calendar tfoot td#next a {
	color: #000;
	font-size: 14px;
	font-weight: 400;
	position: relative;
	text-transform: uppercase;
	bottom: -9px;
}

.mt-widget .widget_calendar #wp-calendar thead {
	border-bottom: none;
}

.mt-widget .widget_calendar #wp-calendar thead th {
	font-size: 13px;
	font-weight: 400;
	color: #fff;
	text-align: center;
	background-color: #404040;
	padding: 8px;
	border-bottom: none;
	letter-spacing: 0;
}


/* Widget: RSS */

.mt-widget .widget_rss li {
	list-style: none;
	margin-bottom: 30px;
}

.mt-widget .widget_rss li:last-child {
	margin-bottom: 0;
}

.mt-widget .rsswidget {
	color: #000000;
	font-weight: 500;
}

.mt-widget .widget_rss .rss-date {
	display: block;
	margin: 10px 0;
}

.mt-widget .widget_rss cite {
	margin-top: 10px;
}

.mt-widget .widget_rss cite::before {
	content: '\2014';
	padding-right: 10px;
}

.mt-widget .woodsman-widget-title .rsswidget {
	margin-left: 2px;
}

/* ================================= */
/* :::::::::: 2. Header :::::::::::: */
/* ================================= */

.mobile-menu {
	display: none;
}

header {
	z-index: 9999;
	position: relative;
	margin-top: 40px;
}

header .header-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
}

header.custom-header .header-container {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	position: relative;
}

header .header-container .header-inner-box {
	display: flex;
	align-items: center;
	align-content: center;
	justify-content: center;
}

header.custom-header .header-container .header-inner-box .no-menu-message {
	color: #fff;
}

header.custom-header .header-container .header-inner-box .no-menu-message a {
	color: #fff;
}

header.custom-header .header-container .header-inner-box .no-menu-message a:hover {
	color: #ababab;
}

header.custom-header {
	top: 50px;
	margin-top: 0;
	height: 0;
}

header p.no-menu-message {
	padding-bottom: 14px;
}

header .logo {
	padding-bottom: 14px;
}

header .logo h3 a:hover, header .logo h3 a:focus {
	color: #000;
}

.icon-mobile {
	display: none;
}

header.custom-header .icon-cart span {
	background: #fff;
	color: #000;
}

header.custom-header .icon-cart i {
	color: #fff;
}

#woodsman_menu,
#woodsman_menu ul,
#woodsman_menu li,
#woodsman_menu a {
	border: none;
	margin: 0;
	padding: 0;
	line-height: 1;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	font-family: "Rajdhani", sans-serif;
	letter-spacing: 1px;
	font-size: 14px;
	font-weight: 500;
}

#woodsman_menu>ul>li>ul>li a:hover {
	color: #bfbebe;
}

#woodsman_menu>ul>li.active>ul>li a {
	color: #fff !important;
}


#woodsman_menu>ul {
	list-style: inside none;
	padding: 0;
	margin: 0;
}

#woodsman_menu>ul>li {
	list-style: inside none;
	float: left;
	display: block;
	position: relative;
	margin-right: 25px;
	padding-bottom: 14px;
}

#woodsman_menu>ul>li:last-child {
	margin-right: 0;
}

#woodsman_menu>ul>li>a {
	outline: none;
	display: block;
	position: relative;
	margin: 0;
	z-index: 999;
	text-align: center;
	text-transform: uppercase
}

.custom-header #woodsman_menu>ul>li>a {
	color: #fff;
}

#woodsman_menu>ul>li>a span {
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

#woodsman_menu>ul>li>a:hover span {
	color: #bfbebe;
}

#woodsman_menu>ul>li.active>a {
	font-weight: 400;
	color: #bfbebe;
}

#woodsman_menu ul li.has-sub:hover>ul {
	visibility: visible;
	opacity: 1;
	-webkit-transform: translateY(0%);
	-moz-transform: translateY(0%);
	-ms-transform: translateY(0%);
	-o-transform: translateY(0%);
	transform: translateY(0%);
	-webkit-transition: opacity .3s 0s, visibility 0s 0s, -webkit-transform .3s 0s;
	-moz-transition: opacity .3s 0s, visibility 0s 0s, -moz-transform .3s 0s;
	transition: opacity .3s 0s, visibility 0s 0s, transform .3s 0s
}

#woodsman_menu ul li>ul {
	visibility: hidden;
	opacity: 0;
	min-width: 200px;
	position: absolute;
	top: 25px;
	text-align: left;
	padding: 10px 0;
	background: #050505;
	z-index: 999;
	-webkit-transform: translateY(10%);
	-moz-transform: translateY(10%);
	-ms-transform: translateY(10%);
	-o-transform: translateY(10%);
	transform: translateY(10%);
	-webkit-transition: opacity .3s 0s, visibility 0s .3s, -webkit-transform .3s 0s;
	-moz-transition: opacity .3s 0s, visibility 0s .3s, -moz-transform .3s 0s;
	transition: opacity .3s 0s, visibility 0s .3s, transform .3s 0s
}


#woodsman_menu ul li>ul li {
	position: relative;
	list-style: none;
	margin-bottom: 15px;
	margin-top: 15px;
	margin-left: 25px
}

#woodsman_menu ul li ul ul {
	left: 200px;
	top: 0;
}

#woodsman_menu ul li>ul li:last-child {
	border-bottom: 0;
}

#woodsman_menu ul li>ul li a {
	outline: none;
	position: relative;
	margin: 0;
	text-align: left;
	text-transform: uppercase;
	color: #fff;
	text-decoration: none;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

/* ================================= */
/* :::::::: 3. Cover Section ::::::: */
/* ================================= */

.cover-section {
	width: 100%;
	height: 100%;
}

.cover-section .cover-content-box {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	flex-direction: column;
	align-content: center;
	justify-content: center;
}

.cover-section .cover-content-box .inner-content-box {
	display: flex;
    width: 100%;
	flex-direction: column;
}

.cover-section .cover-content-box .inner-content-box * {
	z-index: 2;
	position: relative;
}

.cover-section .cover-content-box .logo-image-box {
	display: flex;
    width: 100%;
}

.cover-section .cover-content-box .logo-image-box img {
	z-index: 2;
	position: relative;
}

.cover-section .cover-content-box .logo-image-box[data-alignment="left"], .cover-section .cover-content-box .inner-content-box[data-alignment="left"], .cover-section .cover-content-box .countdown-box[data-alignment="left"] .row {
	justify-content: flex-start;
	align-content: flex-start;
	align-items: flex-start;
	text-align: left;
}

.cover-section .cover-content-box .logo-image-box[data-alignment="center"], .cover-section .cover-content-box .inner-content-box[data-alignment="center"], .cover-section .cover-content-box .countdown-box[data-alignment="center"] .row {
	justify-content: center;
	align-content: center;
	align-items: center;
	text-align: center;
}

.cover-section .cover-content-box .logo-image-box[data-alignment="right"], .cover-section .cover-content-box .inner-content-box[data-alignment="right"], .cover-section .cover-content-box .countdown-box[data-alignment="right"] .row {
	justify-content: flex-end;
	align-content: flex-end;
	align-items: flex-end;
	text-align: right;
}


.cover-section .mouse-scroll {
    position: absolute;
    text-align: center;
    bottom: 0;
    left: 0;
    right: 0;
    animation: wobbleArrow 1s ease-in-out 0s infinite alternate;
    -webkit-animation: wobbleArrow 1s ease-in-out 0s infinite alternate;
    -moz-animation: wobbleArrow 1s ease-in-out 0s infinite alternate;
    -o-animation: wobbleArrow 1s ease-in-out 0s infinite alternate;
    z-index: 2
}

.cover-section .mouse-scroll a {
    color: #f9f9f9;
    position: relative;
    bottom: 20px;
    line-height: 45px;
    font-size: 9px;
    text-align: center;
    width: 22px;
    height: 36px;
    border-radius: 10px;
    display: inline-block;
    border: 2px solid rgba(255,255,255,.6)
}

@keyframes wobbleArrow {
	from {
		bottom: 40px;
	}

	to {
		bottom: 50px;
	}
}

@-webkit-keyframes wobbleArrow {
	from {
		bottom: 40px;
	}

	to {
		bottom: 50px;
	}
}

.cover-section[data-destroy="true"]  {
	background-color: #000;
}

.cover-section #effect-box,
.cover-section .video-box,
.cover-section .image-box {
	position: absolute !important;
	overflow: hidden;
	height: 100%;
	width: 100%;
	top: 0;
    left: 0;
    right: 0;
}

.cover-section video.rain-video {
	width: auto;
	visibility: hidden;
}

.cover-section[data-effects="low_poly"] #effect-box canvas,
.cover-section .starfield,
.cover-section #geometric canvas,
.cover-section #magneto canvas,
.cover-section canvas#liquid,
.cover-section canvas.spacetime,
.cover-section canvas.quantum,
.cover-section canvas.physics,
.cover-section canvas.information,
.cover-section canvas.heuristics,
.cover-section canvas.hawking,
.cover-section #particles_coronavirus canvas,
.cover-section #connections canvas,
.cover-section #abstractart canvas,
.cover-section #stardust canvas,
.cover-section #alien canvas,
.cover-section canvas#tv,
.cover-section[data-effects="circuits"] canvas,
.cover-section[data-effects="dotted_ocean"] canvas,
.cover-section[data-effects="blobs"] #blobs canvas
{
	position: absolute;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.cover-section[data-effects="ribbons"] {
	background-color: #000;
}



.cover-section[data-effects="blobs"] #blobs .blobs-noise:before {
    animation: grain 8s steps(10) infinite;
    background-image: url(../img/noise-blobs-effect.png);
    content: "";
    height: 400%;
    left: -150%;
    opacity: .5;
    position: absolute;
    top: -200%;
    width: 400%;
    pointer-events: none;
}

@keyframes grain {

    0%,
    to {
        transform: translate(0)
    }

    10% {
        transform: translate(-5%, -10%)
    }

    20% {
        transform: translate(-15%, 5%)
    }

    30% {
        transform: translate(7%, -25%)
    }

    40% {
        transform: translate(-5%, 25%)
    }

    50% {
        transform: translate(-15%, 10%)
    }

    60% {
        transform: translate(15%)
    }

    70% {
        transform: translateY(15%)
    }

    80% {
        transform: translate(3%, 35%)
    }

    90% {
        transform: translate(-10%, 10%)
    }
}

.cover-section #plasmatic {
	width: 100vw;
	height: 100%;
}

.cover-section[data-effects="discoid"] #effect-box:after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.4);
	z-index: 1;
}

.cover-section[data-effects="night_sky"] #night-sky-bg canvas {
	position: absolute;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.cover-section[data-effects="night_sky"] #night-sky {
	position: absolute;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.cover-section #audio_visualizers .toggle-btn {
	position: absolute;
	right: 200px;
	bottom: 150px;
	color: #FFF !important;
	cursor: pointer;
	display: flex;
	line-height: 3.00em;
	list-style: none;
	text-align: center;
	text-decoration: none;
	font-size: 1.3em;
	white-space: nowrap;
	z-index: 999;
	border: none;
	background: transparent;
	flex-direction: column;
	align-content: center;
	align-items: center;
	justify-content: center;
}

.cover-section #audio_visualizers .toggle-btn i {
	font-size: 40px;
}

.cover-section #audio_visualizers .toggle-btn span {
	display: flex;
	flex-direction: column;
	align-content: center;
	align-items: center;
	justify-content: center;
	position: absolute;
}


/* Background Header */

.cover-section .image-box:after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.4);
	z-index: 1;
}

.cover-section[data-type="slideshow"] .image-box .dummy {
   display: none;
}

.cover-section .video-box:after {
	content: '';
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.4);
}

.cover-section .video-html5-box:after {
	content: '';
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.4);
}

.cover-section .video-html5-box video {
	max-width: none!important;
}

.cover-section #video {
	background: transparent;
	overflow: hidden;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
}

.cover-section .vimeo_player_wrapper iframe {
	position: relative;
	top: -50px !important
}

.cover-section .video-html5-box {
	position: absolute !important;
	overflow: hidden;
	height: 100%;
    width: 100%;
    top: 0;
	z-index: 0 !important;
}

.cover-section .vidbg-container {
	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;
	background-size: cover;
}

.cover-section .videobg {
	position: absolute;
}

.cover-section .videobg.no-poster {
	z-index: 0 !important;
	visibility: hidden;
}

/* Countdown */

.countdown-box .row {
    align-items: center;
    align-content: center;
    justify-content: center
}

.countdown-box .countdown-inner-box {
    position: relative;
	z-index: 2;
}

.countdown-box .countdown-inner-box .time_circles canvas{
	position: relative;
    z-index: 2;
}

.countdown-inner-box .time_circles>div {
	position: absolute;
	text-align: center;
}

.countdown-inner-box .time_circles>div>h4 {
	margin: 0px;
	padding: 0px;
	text-align: center;
	text-transform: uppercase;
	color: #eee;
	font-weight: 300;
	font-family: 'Exo', sans-serif;
}

.countdown-inner-box .time_circles>div>span {
	display: block;
	width: 100%;
	text-align: center;
	font-size: 300%;
	margin-top: 0.5em;
	color: #fff;
}

/* =============================== */
/* ::::: 4. Services Section ::::: */
/* =============================== */

.title-section h3 {
  font-weight: 500;
  font-size: 25px;
  color: #000;
  text-align: left;
  border-left: 9px solid #ededed;
  margin-bottom: 40px;
  letter-spacing: -1px;
  padding-left: 10px;
}

.services-box {
	display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.services-box .icon i {
	height: 175px;
	width: 175px;
	max-width: 100%;
	background: #2CC9B4;
	position: relative;
	text-align: center;
	display: flex;
	align-items: center;
	align-content: center;
	justify-content: center;
	line-height: 1;
	font-size: 54px;
	border-radius: 50%;
	-o-border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-bottom: none;
	color: rgba(255, 255, 255, 1);
	margin: 0 auto 35px auto;
}

.services-box h2 {
	font-size: 16px;
	display: block;
	text-align: center;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 0;
}

.services-box .line {
	font-size: 13px;
	display: block;
	text-align: center;
	margin: 13px 0;
    font-weight: 600;
    line-height: 1;
}

.services-box p {
	text-align: center;
	word-spacing: 1px;
	margin-bottom: 0;
}

/* =============================== */
/* ::::::: 5. Team Section ::::::: */
/* =============================== */

.team-box {
	text-align: center;
	display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    justify-content: center;
}

.team-box img {
	width: 65%;
	margin: 0 auto;
	height: auto;
}

.team-box h2 {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 0;
	margin-top: 35px;
}

.team-box .line {
	font-size: 13px;
	display: block;
	text-align: center;
	margin: 13px 0;
    font-weight: 600;
    line-height: 1;
}

.team-box p {
	word-spacing: 1px;
	text-align: center;
	margin-bottom: 13px;
}

.team-box i {
	font-size: 15px;
	color: #FFFFFF;
	background: none;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.team-box .social-icons a {
	height: 40px;
	width: 40px;
	display: flex;
	align-items: center;
	align-content: center;
	justify-content: center;
	border-radius: 50%;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	line-height: 1;
	margin: 5px 10px 0 auto;
	text-align: center;
	background: #303440;
}

.team-box .social-icons a:hover {
  	background: #24b7a4;
 	color: #fff;
}

.team-box .social-icons li {
	list-style: none;
	float: left;
}

.team-box .social-icons li:last-child a {
	margin-right: 0;
}

.team-box .social-icons ul {
	margin: 0;
	padding: 0;
}

/* ================================= */
/* :::::: 6. Subscribe Section ::::: */
/* ================================= */

.mc4wp-form-fields {
	position: relative;
	z-index: 99;
}

.subscribe-box {
	text-align: center;
	display: flex;
}

.subscribe-box i {
	font-size: 15px;
}

.subscribe-box input[type=email] {
	background-color: rgba(255, 255, 255, 0);
	border: solid 1px rgba(255, 255, 255, 1);
	height: 55px;
	width: 30%;
	color: #fff;
	border-right: none;
	word-spacing: 1px;
	font-size: 13px;
	outline: none;
}

.subscribe-box input[type=email]::-webkit-input-placeholder {
	color: #ffffff;
}

.subscribe-box input[type=email]:-moz-placeholder {
	color: #ffffff;
}

.subscribe-box input[type=email]::-moz-placeholder {
	color: #ffffff;
}

.subscribe-box input[type=email]:-ms-input-placeholder {
	color: #ffffff;
}

.mc4wp-response {
	color: #fff;
	text-align: center;
	padding-top: 10px;
	position: relative;
	z-index: 99;
}

.subscribe-box button {
	background-color: rgba(44, 201, 180, 0);
	border: 1px solid;
	color: #fff;
	width: 65px;
	word-spacing: 1px;
	outline: none;
	font-size: 17px;
	font-weight: 700;
	position: relative;
	height: 55px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.subscribe-box button:hover {
	background: #2CC9B4;
	color: #fff;
}


/* ================================= */
/* :::::: 7. Contact Section ::::::: */
/* ================================= */

.contact-form {
	position:absolute;
	display:flex;
	top:0;
	width:100%;
	height:100%;
	align-items:center;
	align-content:center;
	justify-content:center
  }
  .contact-form .wpcf7-response-output {
	margin: 1.5em 0 0!important;
  }
  .contact-form .contact-inner-box {
	position: absolute;
	bottom: 20px;
	background: #fff;
	padding: 20px;
	width: 40%;
	display: flex;
	align-items: center;
	z-index: 2;
  }
  .contact-form #contact-form {
	position:relative;
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
	width: 100%;
  }

  .contact-form .contact-inner-box #contact-form input[type=text] {
	width:49%;
	background:0 0;
	border:1px solid #ededed;
	outline:none;
	color:#000;
	height:50px;
  }
  .contact-form .contact-inner-box #contact-form input[type=email] {
	width:49%;
	background:0 0;
	border:1px solid #ededed;
	outline:none;
	color:#000;
	height:50px;
	margin-left:auto;
  }
  .contact-form .contact-inner-box #contact-form textarea {
	width:100%;
	background:0 0;
	border:1px solid #ededed;
	outline:none;
	margin:17px 0;
	height:100px;
	resize:none;
	color:#000;
  }


.contact-form input[type='submit'] {
	background-color: #24b7a4;
	border: 1px solid #24b7a4;
	color: #fff;
	padding: 14px 22px;
	display: block;
	word-spacing: 1px;
	outline: none;
	height: 45px;
	font-weight: 400;
	line-height: 1;
	-webkit-transition: all .3s ease-in-out !important;
	-moz-transition: all .3s ease-in-out !important;
	-ms-transition: all .3s ease-in-out !important;
	-o-transition: all .3s ease-in-out !important;
	transition: all .3s ease-in-out !important;
}

.contact-form input[type="submit"]:hover {
	color: #676767;
	background: rgba(61, 74, 110, 0);
	border: 1px solid #EDEDED;
}

input[type=text].wpcf7-not-valid,
input[type=email].wpcf7-not-valid,
input[type=tel].wpcf7-not-valid,
textarea.wpcf7-not-valid,
#block-7 input[type=text].wpcf7-not-valid,
#block-7 input[type=tel].wpcf7-not-valid,
#block-15 input[type=tel].wpcf7-not-valid,
#block-15 input[type=text].wpcf7-not-valid {
	border: 1px solid rgba(243, 0, 0, 0.2);
	z-index: 12000;
	position: relative;
}

div.wpcf7-validation-errors,
div.wpcf7-mail-sent-ng,
.wpcf7-mail-sent-ok {
    background: #fff;
    text-align: center;
    margin-left: 0;
    margin-right: 0;
    padding: 0.5em 1em;
}

input[type=text].wpcf7-not-valid {
    z-index: 99;
}

.contact-form .wpcf7-spinner {
    top: 10px!important;
}

.wpcf7 form .wpcf7-response-output {
    margin: 2em 0 1em;
    padding: 1em;
    width: 100%;
    line-height: 1;
}

/* ================================= */
/* ::::: 8. Google map Section ::::: */
/* ================================= */

#google-container {
	position: relative;
	width: 100%;
	height: 670px;
	z-index: 1;
	background-color: #e7eaf0;
}

#google-container .contact-info-box {
	padding-left: 10px;
}

#google-container .contact-info-box ul {
	list-style: none;
	line-height: 25px;
	padding: 0px;
	text-align: left;
	position: relative;
	margin-bottom: 0;
}

#google-container .contact-info-box h3 {
    font-weight: 500;
    margin-top: 15px;
    margin-bottom: 20px;
    font-size: 15px;
}

#google-container .contact-info-box ul li {
	margin-top: 0px;
	font-weight: 400;
	color: #000000;
	font-size: 13px;
}

#google-container .contact-info-box ul li i {
	padding-right: 25px;
	color: #000;
	margin-bottom: 15px;
	width: 0;
}

#google-container .contact-info-box ul a {
	max-width: 100%;
	color: #000000;
}

#google-container .contact-info-box ul a:hover {
	text-decoration: none;
}

#google-map {
	position: relative;
}

#zoom-in,
#zoom-out {
	height: 32px;
	width: 32px;
	cursor: pointer;
	margin-left: 50px;
	background-color: rgba(22, 182, 234, 0.9);
	background-repeat: no-repeat;
	background-size: 32px 64px;
	background-image: url("../img/icon-controller.svg");
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

#zoom-in:hover,
#zoom-out:hover {
	background-color: #16b6ea;
}

#zoom-in {
	background-position: 50% 0;
	margin-top: 50px;
	margin-bottom: 1px;
}

#zoom-out {
	background-position: 50% -32px;
}

.google-map .contact-info {
	position: absolute;
	width: 100%;
	bottom: 0;
	color: #ffffff;
	padding-top: 16px;
	padding-bottom: 15px;
	letter-spacing: 1px;
}

.contact-info i {
	margin-right: 5px;
}

.google-map address {
	margin-bottom: 0;
	font-weight: 300;
	margin-top: 4px;
	text-align: left;
	line-height: 0;
}

.google-map .phone {
	text-align: center;
	font-weight: 300;
}

.google-map .email {
	text-align: right;
	font-weight: 300;
}

/* ================================= */
/* ::::::::::: 9. Blog ::::::::::::: */
/* ================================= */

/* Column Container */

.blogContainer .gutter-sizer {
	width: 3%;
}

.blogContainer .blog-column-one {
	width: 100%;
}

.blogContainer .blog-column-two {
	width: 48.5%;
}

.blogContainer .blog-column-three {
	width: 31.333%;
}

/* Author Page */

.author-name {
	margin-bottom: 80px;
}

.author-name p {
	font-weight: 400;
	font-size: 1.4em;
	margin-top: 10px;
}

.author-name h4 {
	font-size: 17px;
	text-align: center;
}

.author-name img {
	display: block;
	margin: 0 auto;
	width: 70px;
	height: 70px;
	border-radius: 50%;
}


/* Post Type: Standart */

/* Post */

.blogContainer .post:last-child {
	margin-bottom: 0;
}

.post {
	margin-bottom: 55px;
	border-bottom: 1px solid #f1f1f1;
	padding-bottom: 55px;
}

.single-post .post {
	margin-bottom: 40px;
	padding-bottom: 40px;
}

.post .post-intro {
	margin-bottom: 30px;
}

.post .entry-title a {
	color: #000;
	text-decoration: none;
}

.post h3.entry-title a {
	word-break: break-word;
}

.post h2.entry-title {
	line-height: 25px;
}

.post .post-button {
	display: flex;
	justify-content: flex-start;
	align-content: flex-start;
	align-items: flex-start;
	margin-top: 22px;
}

.post .post-button a {
	color: #ffffff;
	text-decoration: none;
	font-weight: 400;
	background-color: #2CC9B4;
	cursor: pointer;
	border: 2px solid #2CC9B4;
	padding: 14px 22px;
	line-height: 1;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.post .post-button a:hover {
	background: rgba(22, 182, 234, 0) !important;
	color: #2CC9B4;
}

.post .post-details {
	margin: 15px 0 15px 0;
	display: flex;
}

.post .post-details div {
	margin-right: 20px;
}

.post .post-details div i {
	color: #000000;
	padding-right: 5px;
}

.post .footer-single {
	margin-top: 40px;
	display: inline-block;
	width: 100%;
}

.post .footer-single .post-tags {
	margin-bottom: 20px;
}

.post .footer-single ul.share-icons {
	float: left;
	width: 100%;
	padding: 0;
	text-align: center;
	margin-bottom: 0;
}

.post .footer-single .share-icons li {
	float: left;
	list-style: none;
}

.post .footer-single .share-icons li a {
	color: #000000;
	font-size: 15px;
	display: block;
	margin-right: 22px;
	position: relative;
	line-height: 1;
	background-color: transparent;
}

.post .footer-single .share-icons a:hover i {
	color: rgba(0, 0, 0, 0.44);
}

.post .footer-single .share-icons li i {
	color: rgb(33, 31, 31);
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}


.post .post-categories {
	margin-bottom: 20px;
}

/* Page Links */

.page-links {
	width: 100%;
	display: flex;
	align-items: center;
	align-content: flex-start;
	margin-top: 30px;

}

.page-links a {
	border: 2px solid #2CC9B4 !important;
	text-decoration: none;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	align-content: center;
	line-height: 1;
	font-weight: 400 !important;
	color: #000 !important;
	background: none !important;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.page-links a:hover {
	background: #2CC9B4 !important;
	color: #fff !important;
}

.page-links a,
.page-links>span {
	font-weight: 400;
	width: 32px;
	height: 32px;
	line-height: 1;
	border: 2px solid #2CC9B4;
	background: #2CC9B4;
	text-align: center;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: 5px;

}

/* Post Type: Link */

.post .entry-header .type-link {
	margin-bottom: 30px;
	text-align: center;
	background-size: cover;
	background-position: center center;
	color: #fff;
	height: 250px;
}

.post .entry-header .type-link.img-none {
	background: rgb(0, 0, 0);
}

.post .entry-header .type-link a {
	display: flex;
	color: #fff;
	width: 100%;
	height: 100%;
	flex-direction: column;
	align-items: center;
	align-content: center;
	justify-content: center;
}

.post .entry-header .type-link a:before {
	content: '\f0c1';
	font-family: "Font Awesome 6 Pro";
	font-weight: 700;
	font-size: 17px;
	text-align: center;
	color: #000;
	margin-bottom: 18px;
	display: block;
	background: #fff;
	border-radius: 50%;
	width: 45px;
	height: 45px;
	line-height: 45px;
	margin: 0 auto 10px;
}

/* Post Type: Quote */

.post .entry-header .type-quote {
	margin-bottom: 30px;
	text-align: center;
	background-size: cover;
	background-position: center center;
	color: #fff;
	height: 250px;
}

.post .entry-header .type-quote.img-none {
	background: rgb(0, 0, 0);
}

.post .entry-header .type-quote a {
	text-decoration: none;
	color: #fff;
}

.post .entry-header .type-quote blockquote:before {
	content: '\f10d';
	font-family: Fontawesome;
	font-style: normal;
	font-size: 21px;
	text-align: center;
	color: #fff;
	display: block;
}

.post .entry-header .type-quote blockquote {
	border: none;
	font-style: italic;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	align-content: center;
	width: 100%;
	height: 100%;
	margin-bottom: 0;
}

.post .entry-header .type-quote blockquote:before {
	content: '\f10d';
	font-family: "Font Awesome 6 Pro";
	font-weight: 700;
	font-size: 20px;
	text-align: center;
	color: #000;
	margin-bottom: 18px;
	display: block;
	background: #fff;
	border-radius: 50%;
	width: 45px;
	height: 45px;
	font-style: normal;
	line-height: 45px;
	margin: 0 auto 10px;
}

.post .entry-header .type-quote blockquote p {
	margin-bottom: 5px;
	font-style: italic;
	font-size: 15px;
}

.post .entry-header .type-quote blockquote cite {
	font-weight: 400;
	color: #fff;
}

/* Post Type: Video and Audio */

.format-video .type-video.local-video .mejs-container,
.format-video .type-video.local-video .mejs-container .mejs-controls,
.format-video .type-video.local-video .mejs-embed,
.format-video .type-video.local-video .mejs-embed body,
.format-video .type-video.local-video .mejs-container,
.format-video .type-video.local-video .mejs-container .mejs-controls,
.format-video .type-video.local-video .mejs-embed,
.format-video .type-video.local-video .mejs-embed body {
	background: 0 0;
	width: 100%!important;
}

.format-video .type-video.local-video .mejs-overlay-play {
	width: 100%!important;
}

.format-video .type-video.local-video .mejs-container .mejs-controls {
	height: 40px !important;
}

.format-video .type-video.local-video .mejs-container .mejs-controls,
.format-video .type-video.local-video .mejs-container .mejs-controls {
	background: #000000;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0;
}

.format-video .type-video.local-video .mejs-container .mejs-controls .mejs-button,
.format-video .type-video.local-video .mejs-container .mejs-controls .mejs-button {
	height: 40px;
	width: 40px;
}

.format-video .type-video.local-video .mejs-container .mejs-controls button,
.format-video .type-video.local-video .mejs-container .mejs-controls button {
	background-color: transparent;
	background-image: none;
	border: 0;
	height: 40px;
	margin: 0;
	outline: 0;
	position: relative;
	top: 0;
	width: 55px;
}

.format-video .type-video.local-video .mejs-container .mejs-controls button:before,
.format-video .type-video.local-video .mejs-container .mejs-controls button:before {
	color: #fff;
	display: block;
	font-family: "Font Awesome 6 Pro";
	font-size: 15px;
	height: 40px;
	left: 0;
	font-weight: 300;
	line-height: 40px;
	position: absolute;
	text-align: center;
	top: 0;
	width: 40px;
}

.format-video .type-video.local-video .mejs-container .mejs-controls>.mejs-time-rail .mejs-broadcast,
.format-video .type-video.local-video .mejs-container .mejs-controls>.mejs-volume-button>a.mejs-volume-slider .mejs-volume-handle,
.format-video .type-video.local-video .mejs-container .mejs-controls>.mejs-time-rail .mejs-broadcast,
.format-video .type-video.local-video .mejs-container .mejs-controls>.mejs-volume-button>a.mejs-volume-slider .mejs-volume-handle {
	display: none;
}

.format-video .type-video.local-video .mejs-container .mejs-controls>.mejs-playpause-button.mejs-play button:before,
.format-video .type-video.local-video .mejs-container .mejs-controls>.mejs-playpause-button.mejs-replay button:before,
.format-video .type-video.local-video .mejs-container .mejs-controls>.mejs-playpause-button.mejs-play button:before,
.format-video .type-video.local-video .mejs-container .mejs-controls>.mejs-playpause-button.mejs-replay button:before {
	content: "\f04b";
	font-size: 18px;
}

.format-video .type-video.local-video .mejs-container .mejs-controls>.mejs-playpause-button.mejs-pause button:before,
.format-video .type-video.local-video .mejs-container .mejs-controls>.mejs-playpause-button.mejs-pause button:before {
	content: "\f04c";
	font-size: 18px;
}

.format-video .type-video.local-video .mejs-container .mejs-controls>.mejs-playpause-button.mejs-stop button:before,
.format-video .type-video.local-video .mejs-container .mejs-controls>.mejs-playpause-button.mejs-stop button:before {
	content: "\f04d";
	font-size: 18px;
}

.format-video .type-video.local-video .mejs-container .mejs-controls>.mejs-volume-button.mejs-mute button:before,
.format-video .type-video.local-video .mejs-container .mejs-controls>.mejs-volume-button.mejs-mute button:before {
	content: "\f026";
	font-size: 18px;
}

.format-video .type-video.local-video .mejs-container .mejs-controls>.mejs-volume-button.mejs-unmute button:before,
.format-video .type-video.local-video .mejs-container .mejs-controls>.mejs-volume-button.mejs-unmute button:before {
	content: "\f6a9";
	font-size: 18px;
}

.format-video .type-video.local-video .mejs-container .mejs-controls>.mejs-fullscreen-button button:before,
.format-video .type-video.local-video .mejs-container .mejs-controls>.mejs-fullscreen-button button:before {
	content: "\f065";
	font-size: 18px;
}

.format-video .type-video.local-video .mejs-container .mejs-controls>.mejs-volume-button>a.mejs-volume-slider,
.format-video .type-video.local-video .mejs-container .mejs-controls>.mejs-volume-button>a.mejs-volume-slider {
	background: rgba(0, 0, 0, .7);
	height: 130px;
	width: 36px;
}

.format-video .type-video.local-video .mejs-container .mejs-controls>.mejs-volume-button>a.mejs-volume-slider .mejs-volume-total,
.format-video .type-video.local-video .mejs-container .mejs-controls>.mejs-volume-button>a.mejs-volume-slider .mejs-volume-total {
	background: #fff;
	top: 15px;
	width: 6px;
}

.format-video .type-video.local-video .mejs-container .mejs-controls>.mejs-volume-button>a.mejs-volume-slider .mejs-volume-current,
.format-video .type-video.local-video .mejs-container .mejs-controls>.mejs-volume-button>a.mejs-volume-slider .mejs-volume-current {
	background-color: #000;
}

.format-video .type-video.local-video .mejs-container .mejs-controls>a.mejs-horizontal-volume-slider,
.format-video .type-video.local-video .mejs-container .mejs-controls>a.mejs-horizontal-volume-slider {
	height: 40px;
	margin-right: 20px;
	width: 100px;
}

.format-video .type-video.local-video .mejs-container .mejs-controls>a.mejs-horizontal-volume-slider .mejs-horizontal-volume-current,
.format-video .type-video.local-video .mejs-container .mejs-controls>a.mejs-horizontal-volume-slider .mejs-horizontal-volume-total,
.format-video .type-video.local-video .mejs-container .mejs-controls>a.mejs-horizontal-volume-slider .mejs-horizontal-volume-current,
.format-video .type-video.local-video .mejs-container .mejs-controls>a.mejs-horizontal-volume-slider .mejs-horizontal-volume-total {
	height: 6px;
}

.format-video .type-video.local-video .mejs-container .mejs-controls>a.mejs-horizontal-volume-slider .mejs-horizontal-volume-total,
.format-video .type-video.local-video .mejs-container .mejs-controls>a.mejs-horizontal-volume-slider .mejs-horizontal-volume-total {
	background: #fff;
	top: 17px;
	width: 100px;
	max-width: 100%;
}

.format-video .type-video.local-video .mejs-container .mejs-controls>a.mejs-horizontal-volume-slider .mejs-horizontal-volume-current,
.format-video .type-video.local-video .mejs-container .mejs-controls>a.mejs-horizontal-volume-slider .mejs-horizontal-volume-current {
	background-color: #4e4e4e;
}

.format-video .type-video.local-video .mejs-container .mejs-controls>.mejs-time,
.format-video .type-video.local-video .mejs-container .mejs-controls>.mejs-time {
	color: #fff;
	font-size: 13px;
	height: 100%;
	line-height: 42px;
	padding: 0 20px;
}

.format-video .type-video.local-video .mejs-container .mejs-controls>.mejs-time>*,
.format-video .type-video.local-video .mejs-container .mejs-controls>.mejs-time>* {
	font-family: inherit;
}

.format-video .type-video.local-video .mejs-container .mejs-controls>.mejs-time-rail,
.format-video .type-video.local-video .mejs-container .mejs-controls>.mejs-time-rail {
	font-family: inherit;
	height: 6px;
	margin: 0;
	padding: 0;
	top: 17px;
	outline: none;
}

.format-video .type-video.local-video .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-total,
.format-video .type-video.local-video .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-total {
	display: block !important;
	background: #fff;
	height: 6px;
	margin: 0;
	outline: none;
}

.format-video .type-video.local-video .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-total span,
.format-video .type-video.local-video .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-total span {
	height: 6px;
}

.format-video .type-video.local-video .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-total .mejs-time-buffering,
.format-video .type-video.local-video .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-total .mejs-time-hovered,
.format-video .type-video.local-video .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-total .mejs-time-marker,
.format-video .type-video.local-video .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-total .mejs-time-buffering,
.format-video .type-video.local-video .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-total .mejs-time-hovered,
.format-video .type-video.local-video .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-total .mejs-time-marker {
	background: 0 0;
}

.format-video .type-video.local-video .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-total .mejs-time-loaded,
.format-video .type-video.local-video .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-total .mejs-time-loaded {
	background: rgba(51, 51, 51, .2);
}

.format-video .type-video.local-video .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-total .mejs-time-current,
.format-video .type-video.local-video .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-total .mejs-time-current {
	background: #4e4e4e;
}

.format-video .type-video.local-video .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-total .mejs-time-hovered,
.format-video .type-video.local-video .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-total .mejs-time-hovered {
	background: #4e4e4e;
}

.format-video .type-video.local-video .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-total .mejs-time-float,
.format-video .type-video.local-video .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-total .mejs-time-float-corner,
.format-video .type-video.local-video .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-total .mejs-time-float-current,
.format-video .type-video.local-video .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-total .mejs-time-float,
.format-video .type-video.local-video .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-total .mejs-time-float-corner,
.format-video .type-video.local-video .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-total .mejs-time-float-current {
	background: 0 0;
	border: 0;
	color: #ffffff;
	top: -20px;
}

.format-video .type-video.local-video .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-handle,
.format-video .type-video.local-video .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-handle-content,
.format-video .type-video.local-video .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-handle,
.format-video .type-video.local-video .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-handle-content {
	border: none;
	height: 6px;
	left: 0;
	top: 0;
	width: 6px
}

.post .type-video.local-video .wp-video {
	width: 100%!important;
	overflow: hidden;
}

.post .type-video.local-video video {
    object-fit: cover;
}

.post .type-video.vimeo-video {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	max-width: 100%;
	height: auto;
}

.post .type-video.youtube-video {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    width: 100%!important;
    height: 450px;
}

.post .type-video iframe,
.post .type-video object,
.post .type-video embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.post .entry-header .type-audio.image-audio {
	text-align: center;
	background-size: cover;
	background-position: center center;
	color: #fff;
	height: 450px;
	display: flex;
	align-items: center;
	justify-content: end;
	align-content: end;
	padding-top: 20px;
	flex-direction: column;
}

.post .entry-header .type-audio h2 {
	width: 100%;
	margin-bottom: 15px;
	font-size: 1.8em;
}

.post .entry-header .type-audio iframe {
	width: 100%;
}

.post.embed-container {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	max-width: 100%;
}

.post .embed-container iframe,
.post .embed-container object,
.post .embed-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.format-audio .mejs-container,
.format-audio .mejs-container .mejs-controls,
.format-audio .mejs-embed,
.format-audio .mejs-embed body,
.format-audio .mejs-container,
.format-audio .mejs-container .mejs-controls,
.format-audio .mejs-embed,
.format-audio .mejs-embed body {
	background: 0 0;
}

.format-audio .mejs-container,
.format-audio .mejs-container .mejs-controls,
.format-audio .mejs-container,
.format-audio .mejs-container .mejs-controls {
	height: 40px !important;
}

.format-audio .mejs-container .mejs-controls,
.format-audio .mejs-container .mejs-controls {
	background: #000000;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0;
}

.format-audio .mejs-container .mejs-controls .mejs-button,
.format-audio .mejs-container .mejs-controls .mejs-button {
	height: 40px;
	width: 40px;
}

.format-audio .mejs-container .mejs-controls button,
.format-audio .mejs-container .mejs-controls button {
	background-color: transparent;
	background-image: none;
	border: 0;
	height: 40px;
	margin: 0;
	outline: 0;
	position: relative;
	top: 0;
	width: 55px;
}

.format-audio .mejs-container .mejs-controls button:before,
.format-audio .mejs-container .mejs-controls button:before {
	color: #fff;
	display: block;
	font-family: "Font Awesome 6 Pro";
	font-size: 15px;
	height: 40px;
	left: 0;
	font-weight: 300;
	line-height: 40px;
	position: absolute;
	text-align: center;
	top: 0;
	width: 40px;
}

.format-audio .mejs-container .mejs-controls>.mejs-time-rail .mejs-broadcast,
.format-audio .mejs-container .mejs-controls>.mejs-volume-button>a.mejs-volume-slider .mejs-volume-handle,
.format-audio .mejs-container .mejs-controls>.mejs-time-rail .mejs-broadcast,
.format-audio .mejs-container .mejs-controls>.mejs-volume-button>a.mejs-volume-slider .mejs-volume-handle {
	display: none;
}

.format-audio .mejs-container .mejs-controls>.mejs-playpause-button.mejs-play button:before,
.format-audio .mejs-container .mejs-controls>.mejs-playpause-button.mejs-replay button:before,
.format-audio .mejs-container .mejs-controls>.mejs-playpause-button.mejs-play button:before,
.format-audio .mejs-container .mejs-controls>.mejs-playpause-button.mejs-replay button:before {
	content: "\f04b";
	font-size: 18px;
}

.format-audio .mejs-container .mejs-controls>.mejs-playpause-button.mejs-pause button:before,
.format-audio .mejs-container .mejs-controls>.mejs-playpause-button.mejs-pause button:before {
	content: "\f04c";
	font-size: 18px;
}

.format-audio .mejs-container .mejs-controls>.mejs-playpause-button.mejs-stop button:before,
.format-audio .mejs-container .mejs-controls>.mejs-playpause-button.mejs-stop button:before {
	content: "\f04d";
	font-size: 18px;
}

.format-audio .mejs-container .mejs-controls>.mejs-volume-button.mejs-mute button:before,
.format-audio .mejs-container .mejs-controls>.mejs-volume-button.mejs-mute button:before {
	content: "\f026";
	font-size: 18px;
}

.format-audio .mejs-container .mejs-controls>.mejs-volume-button.mejs-unmute button:before,
.format-audio .mejs-container .mejs-controls>.mejs-volume-button.mejs-unmute button:before {
	content: "\f6a9";
	font-size: 18px;
}

.format-audio .mejs-container .mejs-controls>.mejs-volume-button>a.mejs-volume-slider,
.format-audio .mejs-container .mejs-controls>.mejs-volume-button>a.mejs-volume-slider {
	background: rgba(0, 0, 0, .7);
	height: 130px;
	width: 36px;
}

.format-audio .mejs-container .mejs-controls>.mejs-volume-button>a.mejs-volume-slider .mejs-volume-total,
.format-audio .mejs-container .mejs-controls>.mejs-volume-button>a.mejs-volume-slider .mejs-volume-total {
	background: #fff;
	top: 15px;
	width: 6px;
}

.format-audio .mejs-container .mejs-controls>.mejs-volume-button>a.mejs-volume-slider .mejs-volume-current,
.format-audio .mejs-container .mejs-controls>.mejs-volume-button>a.mejs-volume-slider .mejs-volume-current {
	background-color: #000;
}

.format-audio .mejs-container .mejs-controls>a.mejs-horizontal-volume-slider,
.format-audio .mejs-container .mejs-controls>a.mejs-horizontal-volume-slider {
	height: 40px;
	margin-right: 20px;
	width: 100px;
}

.format-audio .mejs-container .mejs-controls>a.mejs-horizontal-volume-slider .mejs-horizontal-volume-current,
.format-audio .mejs-container .mejs-controls>a.mejs-horizontal-volume-slider .mejs-horizontal-volume-total,
.format-audio .mejs-container .mejs-controls>a.mejs-horizontal-volume-slider .mejs-horizontal-volume-current,
.format-audio .mejs-container .mejs-controls>a.mejs-horizontal-volume-slider .mejs-horizontal-volume-total {
	height: 6px;
}

.format-audio .mejs-container .mejs-controls>a.mejs-horizontal-volume-slider .mejs-horizontal-volume-total,
.format-audio .mejs-container .mejs-controls>a.mejs-horizontal-volume-slider .mejs-horizontal-volume-total {
	background: #fff;
	top: 17px;
	width: 100px;
	max-width: 100%;
}

.format-audio .mejs-container .mejs-controls>a.mejs-horizontal-volume-slider .mejs-horizontal-volume-current,
.format-audio .mejs-container .mejs-controls>a.mejs-horizontal-volume-slider .mejs-horizontal-volume-current {
	background-color: #4e4e4e;
}

.format-audio .mejs-container .mejs-controls>.mejs-time,
.format-audio .mejs-container .mejs-controls>.mejs-time {
	color: #fff;
	font-size: 13px;
	height: 100%;
	line-height: 42px;
	padding: 0 20px;
}

.format-audio .mejs-container .mejs-controls>.mejs-time>*,
.format-audio .mejs-container .mejs-controls>.mejs-time>* {
	font-family: inherit;
}

.format-audio .mejs-container .mejs-controls>.mejs-time-rail,
.format-audio .mejs-container .mejs-controls>.mejs-time-rail {
	font-family: inherit;
	height: 6px;
	margin: 0;
	padding: 0;
	top: 17px;
	outline: none;
}

.format-audio .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-total,
.format-audio .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-total {
	display: block !important;
	background: #fff;
	height: 6px;
	margin: 0;
	outline: none;
}

.format-audio .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-total span,
.format-audio .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-total span {
	height: 6px;
}

.format-audio .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-total .mejs-time-buffering,
.format-audio .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-total .mejs-time-hovered,
.format-audio .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-total .mejs-time-marker,
.format-audio .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-total .mejs-time-buffering,
.format-audio .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-total .mejs-time-hovered,
.format-audio .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-total .mejs-time-marker {
	background: 0 0;
}

.format-audio .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-total .mejs-time-loaded,
.format-audio .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-total .mejs-time-loaded {
	background: rgba(51, 51, 51, .2);
}

.format-audio .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-total .mejs-time-current,
.format-audio .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-total .mejs-time-current {
	background: #4e4e4e;
}

.format-audio .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-total .mejs-time-hovered,
.format-audio .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-total .mejs-time-hovered {
	background: #4e4e4e;
}

.format-audio .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-total .mejs-time-float,
.format-audio .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-total .mejs-time-float-corner,
.format-audio .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-total .mejs-time-float-current,
.format-audio .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-total .mejs-time-float,
.format-audio .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-total .mejs-time-float-corner,
.format-audio .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-total .mejs-time-float-current {
	background: 0 0;
	border: 0;
	color: #ffffff;
	top: -20px;
}

.format-audio .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-handle,
.format-audio .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-handle-content,
.format-audio .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-handle,
.format-audio .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-handle-content {
	border: none;
	height: 6px;
	left: 0;
	top: 0;
	width: 6px
}


/* Post Type: Chat */

.format-chat .post-info p {
	border-bottom: 1px dashed #ebebeb;
	padding-bottom: 10px;
}

/* Post Type: Gallery */

.format-gallery .gallery-box {
	margin-bottom: 30px
}

.format-gallery ul.post-gallery {
	padding: 0;
	margin: 0;
	display: flex;
	list-style: none;
	flex-direction: row;
	flex-wrap: wrap;
}

.format-gallery ul.post-gallery li {
	width: 30%;
	flex-grow: 1;
}

.format-gallery ul.post-gallery .overlay-box {
	position: relative;
	overflow: hidden;
	text-align: center;
}

.format-gallery ul.post-gallery .overlay-box>a {
	display: block;
	position: relative;
}

.format-gallery ul.post-gallery .overlay-wrap {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.format-gallery ul.post-gallery .overlay-box .overlay {
	display: table;
	height: 100%;
	width: 100%;
}

.format-gallery ul.post-gallery i {
	font-size: 23px;
	color: #000;
	display: table-cell;
	vertical-align: middle;
}

.format-gallery ul.post-gallery img {
	max-width: 100%;
	width: 100%;
	height: auto;
}

.format-gallery ul.post-gallery .overlay-box:hover .overlay-wrap {
	background-color: rgba(255, 255, 255, 0.9);
	opacity: 1;
}

.format-gallery .flexslider ul li div {
	height: 450px;
	background-size: cover;
	background-position: 50%;
	overflow: hidden;
	background-repeat: no-repeat
}

.format-gallery .flex-caption {
	position: absolute;
	bottom: 0;
	background: rgba(0, 0, 0, .5);
	width: 100%;
	margin-bottom: 0;
	color: #fff;
	padding: 10px;
	text-align: center
}


.format-gallery .flex-direction-nav a {
	background-color: #000;
	text-align: center !important;
}

.format-gallery .flex-direction-nav a:hover {
	background-color: #000;
}

.format-gallery .flex-direction-nav a i {
	font-size: 17px;
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	align-content: center;
	height: 100%;
}

.format-gallery .flexslider:hover .flex-direction-nav .flex-next {
	right: 0;
}

.format-gallery .flexslider:hover .flex-direction-nav .flex-prev {
	left: 0;
}

/* Page Pagination */

.pagination {
	display: flex;
	margin: 55px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	align-content: center;
}

.pagination .nav-links {
	display: flex;
}

.pagination .page-numbers {
	text-align: center;
}

.pagination .page-numbers li {
	float: left;
	margin: 5px;
	list-style: none;
}

.pagination a,
.pagination span {
	border: 2px solid #2CC9B4;
	text-decoration: none;
	display: flex;
	width: 33px;
	height: 33px;
	margin: 2px;
	line-height: 1;
	justify-content: center;
	align-items: center;
	align-content: center;
	color: #000000;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.pagination a:hover {
	background: #2CC9B4;
	color: #fff;
}

/* Single post navigation */

.post-navigation {
	display: flex;
	justify-content: flex-end;
}

.pagination span.current {
	background: #2CC9B4;
	color: #fff;
}

.post-navigation .prev-button {
	padding-bottom: 10px;
	margin-right: auto;
}

.post-navigation .next-button {
	padding-bottom: 60px;
	order: 1;
}

.post-navigation .prev-button a,
.post-navigation .next-button a {
	color: #ffffff;
	border: 2px solid #2CC9B4;
	background: #2CC9B4;
	border-radius: 0;
	display: block;
	text-decoration: none;
	position: relative;
	font-weight: 400;
	z-index: 999;
	padding: 14px 22px;
	line-height: 1;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.post-navigation .prev-button a:hover,
.post-navigation .next-button a:hover {
	background: rgba(22, 182, 234, 0) !important;
	color: #000000;
}

.post-navigation .prev-button a i {
	padding-right: 5px;
	font-weight: 700;
}

.post-navigation .next-button a i {
	padding-left: 5px;
	font-weight: 700;
}

/* Post Password protected */

.post-password-form input[type='password'] {
	background: transparent;
	border: 1px solid #EDEDED;
	outline: none;
	height: 37px;
}

.post-password-form input[type='submit'] {
	color: #ffffff;
	outline: none;
	border: 2px solid #2CC9B4;
	padding: 10px 22px;
	background: #2CC9B4;
	border-radius: 0;
	text-decoration: none;
	position: relative;
	line-height: 1;
	margin-top: 5px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.post-password-form input[type='submit']:hover {
	background: rgba(22, 182, 234, 0) !important;
	color: #2CC9B4;
}

/* Comments */

#comments h3.comment-reply-title {
	font-size: 1.2em;
	color: #000000;
	margin-bottom: 20px;
}

#comments .logged-in-as {
	margin-bottom: 20px;
}

#comments #cancel-comment-reply-link {
	font-size: 12px;
}

#comments .comment-respond {
	margin-bottom: 130px;
}

#comments h3.comments-title {
	text-align: left;
	font-weight: 400;
	font-size: 1.2em;
	display: block;
	margin-bottom: 50px;
}

#comments h3.no-comments-title {
	margin-bottom: 40px;
	font-size: 1.2em;
	color: #000000;
	font-weight: 400;
}

#comments h3 a {
	font-weight: 400;
	font-size: 15px;
	color: #000000 !important;
	margin-left: 5px;
}

#comments textarea {
	width: 100%;
	background: transparent;
	border: 1px solid #ededed;
	outline: none;
	color: #000000;
	resize: vertical;
}

#comments input[type='text'],
#comments input[type='email'] {
	width: 100%;
	background: transparent;
	border: 1px solid #ededed;
	margin-bottom: 17px;
	outline: none;
}

#comments input[type='submit'] {
	color: #ffffff;
	text-decoration: none;
	font-weight: 400;
	background-color: #2CC9B4;
	cursor: pointer;
	border: 2px solid #2CC9B4;
	line-height: 1;
	padding: 14px 22px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

#comments .form-group {
	margin-bottom: 17px;
}

#comments input[type="submit"]:hover {
	background: rgba(22, 182, 234, 0) !important;
	color: #2CC9B4;
}

#comments {
	margin-top: 30px;
	clear: both;
}

#comments .comment {
	list-style: none;
}

#comments .comment-info {
	margin-bottom: 60px;
	border-bottom: 1px solid #f5f5f5;
	padding-bottom: 60px;
}

#comments .comment-list,
#comments .comment-list .children {
	padding: 0;
	margin: 0;
	list-style-type: none;
}

#comments .comment-list ul.children {
	margin-left: 30px;
}

#comments .child-comment {
	padding-left: 7%;
}

#comments .comment .avatar-author img {
	float: left;
	overflow: hidden;
	margin-right: 20px;
	position: relative;
	width: 60px;
	height: 60px;
	border-radius: 50%
}

#comments .comment .name-author h5,
#comments .pingback .name-author h5 {
	font-size: 15px;
	font-weight: 400;
	text-transform: none;
	letter-spacing: normal;
}

#comments li.pingback {
	list-style: none;
}

#comments .pingback .name-author a {
	color: #404040;
}

#comments .comment .name-author a {
	text-decoration: none;
	font-size: 1.0em;
}

#comments .comment .date-comment {
	text-align: left;
	font-size: 13px;
	color: #000000;
	padding-left: 10px;
}

#comments .comment .date-comment a {
	color: #000000;
}

#comments .comment .header-comment a {
	color: #000000;
	text-decoration: none;
}

#comments .comment .body-comment {
	margin-top: 35px;
}

#comments .comment .reply {
	margin-top: 30px;
}

#comments .comment .reply a {
	color: #ffffff;
	text-decoration: none;
	font-weight: 400;
	background-color: #2CC9B4;
	cursor: pointer;
	border: 2px solid #2CC9B4;
	padding: 8px 17px;
	line-height: 1;
	text-transform: lowercase;
}

#comments .comment .reply a:hover {
	background: rgba(22, 182, 234, 0) !important;
	color: #2CC9B4;
}


#comments .comments-navigation {
	margin-bottom: 80px;
	width: 100%;
	margin-right: 0;
	margin-top: 0;
	height: 0;
}

#comments .comments-navigation .next-comments {
	float: right;
	text-align: right;
	font-size: 15px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

#comments .comments-navigation .prev-comments {
	float: left;
	text-align: left;
	font-size: 15px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

#comments .comments-navigation .prev-comments:hover {
	-webkit-transform: translateX(-.25rem);
	-ms-transform: translateX(-.25rem);
	transform: translateX(-.25rem);
}

#comments .comments-navigation .next-comments:hover {
	-webkit-transform: translateX(.25rem);
	-ms-transform: translateX(.25rem);
	transform: translateX(.25rem);
}

/* Minimal Style */

.blog-minimal .entry-title {
	margin-top: 0;
}


.blog-minimal .entry-header .image-box {
	height: 250px;
	background-size: cover;
	background-position: center center;
}

.blog-minimal .entry-header {
	display: flex;
}

.blog-minimal .col-md-5 {
	padding-right: 30px;
}

/* Creative Style */

.post.blog-creative {
	margin-bottom: 3%;
	padding-bottom: 0;
	border: none;
}

.blog-creative .entry-header {
	overflow: hidden;
	position: relative;
}

.blog-creative .work-box {
	background-position: center center;
	background-size: cover;
	height: 0;
	width: 100%;
	padding-top: 66.64%;
	background-repeat: no-repeat;
}

.blog-creative img {
	height: auto;
	max-width: 100%;
	display: block;
}

.blog-creative .blog-creative-item {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: rgba(255, 255, 255, 0.9);
	-webkit-transform: translateY(100%);
	-ms-transform: translateY(100%);
	transform: translateY(100%);
	opacity: 0;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.blog-creative .blog-creative-item .item-info {
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.blog-creative .blog-creative-item .item-info span {
	display: inline-block;
	font-weight: 600;
	width: 100%;
	text-transform: uppercase;
	color: #000000;
	font-size: 14px;
	-webkit-transform: translateY(20px);
	-ms-transform: translateY(20px);
	transform: translateY(20px);
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	opacity: 0;
}

.blog-creative .blog-creative-item .item-info em {
	font-style: normal;
	font-weight: 300;
	display: inline-block;
	padding: 5px;
	color: black;
	margin-top: 5px;
	-webkit-transform: translateY(20px);
	-ms-transform: translateY(20px);
	transform: translateY(20px);
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	opacity: 0;
}

.blog-creative .blog-creative-item .item-info em a {
	color: #000;
	text-decoration: none;
}

.blog-creative:hover .blog-creative-item {
	opacity: 1;
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
}

.blog-creative:hover .item-info em,
.blog-creative:hover .item-info span {
	opacity: 1;
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
}

/* ================================= */
/* ::::::::: 10. Footer :::::::::::: */
/* ================================= */

.footer {
	background-color: #242830;
	padding: 40px 0;
	z-index: 10;
	width: 100%;
	position: relative;
	color: #fff;
}

.footer .social-icons li {
	float: left;
	margin-right: 22px;
	list-style: none;
}

.footer .social-icons li:last-child {
	margin-right: 0;
}

.footer .social-icons {
	order: 2;
	margin-left: auto;
	padding-left: 0;
	margin-bottom: 0;
}

.footer .copyright {
	order: 1;
}

.footer a {
	color: #fff;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.footer a:hover {
	color: #ababab;
}

.footer .footer-content {
	display: flex;
}

.footer .widget {
	margin-bottom: 20px;
}

.footer .row-flex {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right: -15px;
	margin-left: -15px;
}

.footer .col-md-flex-12 {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 100%;
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%;
	padding-right: 15px;
	padding-left: 15px;
}

.footer .col-md-flex-6 {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 50%;
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
	max-width: 50%;
	padding-right: 15px;
	padding-left: 15px;
}

.footer .col-md-flex-4 {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 33.333333%;
	-ms-flex: 0 0 33.333333%;
	flex: 0 0 33.333333%;
	max-width: 33.333333%;
	padding-right: 15px;
	padding-left: 15px;
}

.footer .col-md-flex-3 {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 25%;
	-ms-flex: 0 0 25%;
	flex: 0 0 25%;
	max-width: 25%;
	padding-right: 15px;
	padding-left: 15px;
}

/* ================================= */
/* :::::::: 11. WooCommerce :::::::: */
/* ================================= */

/* Parallax */

.parallax {
	position: relative;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	width: 100%;
	height: 630px;
	margin-bottom: 60px;
	margin-top: -185px;
}

.parallax:before {
	content: '';
	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;
	height: 100%;
}

.parallax .info {
	text-align: center;
	width: 100%;
	display: flex;
	height: 100%;
	justify-content: center;
	align-items: center;
	align-content: center;
}

.parallax .info h2 {
	font-weight: 400;
	font-size: 3.3em;
	color: #000;
	letter-spacing: 0.15em;
	text-transform: uppercase;
    margin-bottom: 0;
}

.single.woocommerce .parallax {
	display: none;
}

/* Column Container */

.shopContainer {
	clear: both;
}

.shopContainer .gutter-sizer {
	width: 3%;
}

.shopContainer.columns-1 .product {
	width: 100%;
}

.shopContainer.columns-2 .product {
	width: 48.5%;
}

.shopContainer.columns-3 .product {
	width: 31.333%;
}

.shopContainer.columns-4 .product {
	width: 22.755%;
}

/* Elements */

.woocommerce .page-title {
	font-size: 20px;
}

.woocommerce-cart .col-md-9,
.woocommerce-checkout .col-md-9 {
	width: 100%;
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%;
}

.woocommerce-cart .col-md-3,
.woocommerce-checkout .col-md-3 {
	display: none;
}

.woocommerce .cart-collaterals .cart_totals,
.woocommerce-page .cart-collaterals .cart_totals,
.woocommerce-cart .cart-collaterals .cart_totals table th {
	width: 100%;
	background: none;
	color: #000 !important;
}

.woocommerce .woocommerce-ordering,
.woocommerce-page .woocommerce-ordering {
	margin-bottom: 40px;
}

.woocommerce .woocommerce-ordering select:hover, .woocommerce-page .woocommerce-ordering select:hover {
	color: #000;
}

.woocommerce a.remove {
	color: #000 !important;
	font-size: 21px;
	width: 20px;
    height: 20px;
}

.woocommerce a.remove:hover {
	background: #2CC9B4;
}

.woocommerce .coupon input[type='text'] {
	width: 110px !important;
	height: 45px;
	padding-left: 12px !important;
	padding-top: 5px !important;
}

.woocommerce table.shop_table td,
.woocommerce table.shop_table th {
	padding: 22px 12px;
	background: transparent;
	color: #000 !important;
}

.woocommerc table tbody tr:nth-child(even) {
	background-color: #fcfcfc;
}

.woocommerce table a {
	text-decoration: none;
	color: #000;
}

.woocommerce-shipping-totals td {
	padding: 10px;
}

.woocommerce table.shop_table tbody th,
.woocommerce table.shop_table tfoot td,
.woocommerce table.shop_table tfoot th,
.woocommerce .product-quantity {
	font-weight: 500;
}

.woocommerce table.shop_table>thead>tr>th {
	border-bottom: 0;
	padding: 13px 12px;
}

.woocommerce table.shop_table tbody th,
.woocommerce table.shop_table tr.order-total strong {
	font-weight: 500;
}

.woocommerce table.shop_table {
	border-radius: 0;
}

.woocommerce table.shop_table .product-remove {
	padding-left: 50px;
}

.woocommerce .woocommerce-message {
	color: #000;
}

.woocommerce .woocommerce-message::before {
	color: #2CC9B4;
}

.woocommerce .woocommerce-message {
	border-color: #2CC9B4;
}

.woocommerce-order-received h2,
.woocommerce-order-received h3,
.woocommerce .checkout h3,
.woocommerce .product .up-sells h2,
.woocommerce .product .related.products h2,
.woocommerce .cross-sells h2,
.woocommerce .cart_totals h2,
.woocommerce-cart h3.entry-header {
	font-size: 20px;
	margin-bottom: 20px;
	margin-top: 50px;
}

.woocommerce-cart h3.entry-header {
	margin-top: 0;
}

.woocommerce .woocommerce-form-coupon .form-row input.input-text {
	height: 45px;
}

#add_payment_method #payment,
.woocommerce-cart #payment,
.woocommerce-checkout #payment,
.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
	background: #fbfbfb;
	color: #000;
	border-radius: 0;
}

.select2-container--default .select2-selection--single {
	background-color: #fff;
	border: 1px solid #EDEDED;
	border-radius: 4px;
	height: 35px;
	padding: 3px;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
	border: 1px solid #EDEDED;
}

.select2-dropdown {
	border: 1px solid #EDEDED;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
	margin-top: 2px;
}

.widget-area p.woocommerce-mini-cart__buttons.buttons {
	margin: 0 auto;
	text-align: center;
}

.woocommerce form.checkout_coupon, .woocommerce form.login, .woocommerce form.register {
	border-radius: 0;
	border: 1px solid #ededed;
}

/* My Account */

.woocommerce-MyAccount-navigation ul {
	margin: 0;
	padding: 0;
}

.woocommerce-MyAccount-navigation a {
	color: #000;
	font-weight: 400;
}

.woocommerce-MyAccount-navigation li {
	list-style: none;
	margin-bottom: 10px;
}

.woocommerce-MyAccount-content a,
.woocommerce-LostPassword a {
	font-weight: 400;
	color: #000;
}

nav.woocommerce-MyAccount-navigation {
	margin: 0;
	height: auto;
}

.woocommerce table.my_account_orders {
	font-size: 13px;
}

/* Widget: Cart */

.cart-container {
	position: relative;
	margin-left: 25px;
	bottom: 7px;
	z-index: 9999;
}

.cart-container .icon-cart {
	cursor: pointer;
}

.cart-container .icon-cart i {
	font-size: 24px;
	font-weight: 300;
}

.cart-container .icon-cart span {
	position: absolute;
	right: -15px;
	top: -7px;
	font-size: 11px;
	line-height: 19px;
	display: block;
	text-align: center;
	background: #242830;
	color: #fff;
	width: 19px;
	font-weight: 400;
	height: 19px;
	word-wrap: break-word;
	border-radius: 50%;
	-o-border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
}

.cart-container .cart-widget {
	visibility: hidden;
	opacity: 0 !important;
	min-width: 280px;
	position: absolute;
	top: 33px;
	right: 0;
	text-align: left;
	color: #fff;
	padding: 20px;
	line-height: 1.9;
	background: #050505;
	z-index: 999;
	-webkit-transform: translateY(10%);
	-moz-transform: translateY(10%);
	-ms-transform: translateY(10%);
	-o-transform: translateY(10%);
	transform: translateY(10%);
	-webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s, -webkit-transform 0.3s 0s;
	-moz-transition: opacity 0.3s 0s, visibility 0s 0.3s, -moz-transform 0.3s 0s;
	transition: opacity 0.3s 0s, visibility 0s 0.3s, transform 0.3s 0s;
}

.cart-container .cart-widget span.woocommerce-Price-amount {
	color: #fff;
}

.cart-container .cart-widget.widget-visible {
	visibility: visible;
	opacity: 1 !important;
	-webkit-transform: translateY(-0%);
	-moz-transform: translateY(-0%);
	-ms-transform: translateY(-0%);
	-o-transform: translateY(-0%);
	transform: translateY(-0%);
	-webkit-transition: opacity 0.3s 0s, visibility 0s 0s, -webkit-transform 0.3s 0s;
	-moz-transition: opacity 0.3s 0s, visibility 0s 0s, -moz-transform 0.3s 0s;
	transition: opacity 0.3s 0s, visibility 0s 0s, transform 0.3s 0s;
}

.cart-container .cart-widget ul.cart_list li,
.cart-container .cart-widget ul.product_list_widget li {
	padding-top: 0 !important;
	padding-left: 0px !important;
	padding-bottom: 15px !important;
	list-style: none;
}

.cart-container .cart-widget li:after,
.cart-container .cart-widget li:before {
	content: "";
	display: table;
	clear: both;
}

.cart-container .cart-widget img {
	width: 75px !important;
	height: auto !important;
	float: right !important;
}

.cart-container .cart-widget strong,
.cart-container .cart-widget b {
	font-weight: 400;
}

.cart-container .cart-widget .total span {
	float: right;
}

.cart-container .cart-widget a {
	text-decoration: none;
}

.cart-container .cart-widget ul {
	padding: 0;
	margin: 0;
}

.cart-container .cart-widget .quantity {
	display: block;
	color: #fff !important;
}

.cart-container .widget .quantity {
	color: #000;
	padding-top: 5px;
	display: block;
}

.cart-container .cart-widget ul.cart_list li.empty {
	padding: 0 !important;
}

.cart-container .cart-widget .woocommerce-mini-cart__empty-message {
	text-align: center;
	margin: 0;
	line-height: 1;
}

.cart-container .cart-widget ul.cart_list li a,
.cart-container .cart-widget ul.product_list_widget li a {
	color: #fff !important;
	font-weight: 400;
	text-decoration: none;
	width: auto;
	display: block;
}

.cart-container .cart-widget a.remove {
	font-size: 16px;
	text-align: center;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	display: none !important;
}

.cart-container .cart-widget a.remove:hover {
	background: #fff !important;
	color: #000 !important;
}

.cart-container .cart-widget .widget_shopping_cart .total,
.cart-container .cart-widget.widget_shopping_cart .total {
	border-top: none;
	padding: 0 0 3px 0 !important;
}

.cart-container .cart-widget .widget_shopping_cart .total strong,
.cart-container .cart-widget.widget_shopping_cart .total strong {
	font-weight: 400;
}

.cart-container .cart-widget .widget_shopping_cart .total span,
.cart-container .cart-widget.widget_shopping_cart .total span {
	float: right;
}

.cart-container .cart-widget .buttons a {
	color: #fff;
	text-decoration: none;
	font-weight: 400;
	background: none;
	outline: none;
	border: none;
	border-radius: 0;
	padding: 0 !important;
	line-height: 1;
}

.cart-container .cart-widget .buttons a.checkout {
	margin-left: auto;
}

.cart-container .cart-widget a.button {
	padding: 0 !important;
	background: none;
}

.cart-container .cart-widget .buttons a {
	background: transparent !important;
	border: none;
}

.cart-container .cart-widget .buttons a:hover {
	color: #fff !important;
	border: none;
	background: none;
}

.cart-container .cart-widget .buttons {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding-top: 15px;
	margin-bottom: 0;
	display: flex;
	align-items: center;
    justify-content: center;
}

.cart-container p.woocommerce-mini-cart__total.total {
    line-height: 1;
    margin-bottom: 0;
    padding-bottom: 15px;
    margin-top: 5px;
}

/* Widget: Price Filter */

.woocommerce .widget_price_filter .price_slider_amount .button {
	float: right;
	font-size: 12px;
}

.woocommerce .widget_price_filter .price_slider_amount button.button {
	padding: 8px 13px 8px 13px !important;
	outline: none;
}

.woocommerce .widget_price_filter .price_slider_amount {
	text-align: left;
	font-size: 13px;
	line-height: 2;
}


.woocommerce .widget_price_filter .ui-slider .ui-slider-handle {
	background-color: #000000;
	width: 10px;
	height: 10px;
	top: -.2em;
}

.woocommerce .widget_price_filter .ui-slider .ui-slider-range {
	background-color: #f5f5f5;
}

.woocommerce .widget_price_filter .ui-slider-horizontal {
	height: 5px;
}

.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content {
	background-color: #000000;
}

.woocommerce .widget_price_filter .price_slider {
	margin-bottom: 22px;
}

/* Buttons */

.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
	color: #fff;
	text-decoration: none;
	font-weight: 400;
	background: #2CC9B4;
	outline: none;
	border-radius: 0;
	line-height: 1;
	padding: 14px 22px;
	font-size: 13px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	border: 2px solid #2CC9B4;
}

.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
	background: transparent !important;
	color: #2CC9B4;
}

.woocommerce #respond input#submit.disabled,
.woocommerce #respond input#submit:disabled,
.woocommerce #respond input#submit:disabled[disabled],
.woocommerce a.button.disabled,
.woocommerce a.button:disabled,
.woocommerce a.button:disabled[disabled],
.woocommerce button.button.disabled,
.woocommerce button.button:disabled,
.woocommerce button.button:disabled[disabled],
.woocommerce input.button.disabled,
.woocommerce input.button:disabled,
.woocommerce input.button:disabled[disabled] {
	padding: 14px 22px;
	color: #fff;
	pointer-events: none;
}

.woocommerce #respond input#submit.disabled:hover,
.woocommerce #respond input#submit:disabled:hover,
.woocommerce #respond input#submit:disabled[disabled]:hover,
.woocommerce a.button.disabled:hover,
.woocommerce a.button:disabled:hover,
.woocommerce a.button:disabled[disabled]:hover,
.woocommerce button.button.disabled:hover,
.woocommerce button.button:disabled:hover,
.woocommerce button.button:disabled[disabled]:hover,
.woocommerce input.button.disabled:hover,
.woocommerce input.button:disabled:hover,
.woocommerce input.button:disabled[disabled]:hover {
	background: transparent !important;
}

.woocommerce .product .button {
	text-align: right;
	padding: 10px 11px;
	float: right;
}

.woocommerce .shop_cart-button:before {
	content: "\f07a";
	font-family: "Font Awesome 6 Pro";
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1;
	font-weight: 400;
	font-size: 14px;
}

.woocommerce .shop_cart-button.added::before {
	content: '\e017';
	font-family: WooCommerce;
	line-height: 0;
}

.woocommerce .shop_cart-button.loading:before {
	content: "\f110";
	font-family: "Font Awesome 6 Pro";
	font-weight: 900;
	animation: fa-spin 1s infinite linear;
	-moz-animation: spin 1s infinite linear;
	-o-animation: spin 1s infinite linear;
	-webkit-animation: spin 1s infinite linear;
}


.woocommerce .shop_cart-button {
	background-color: #2CC9B4;
	border: 2px solid #2CC9B4;
	color: #ffffff;
	font-weight: 400;
	font-size: 13px;
	width: 37px;
	height: 37px;
	cursor: pointer;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	display: flex;
	text-decoration: none;
	justify-content: center;
	align-items: center;
	align-content: center;
	line-height: 1;
}

.woocommerce .shop_cart-button:hover {
	background-color: transparent !important;
	color: #2CC9B4;
}

.woocommerce a.added_to_cart {
	display: none;
}

.woocommerce a.button.added::after {
	margin-left: 0;
}

.woocommerce .product .shop_cart-button.loading {
	pointer-events: none;
}

.woocommerce .shop_cart-button {
	text-align: center;
	float: right;
}

/* Page Pagination */

.woocommerce nav.woocommerce-pagination {
    display: flex;
    margin: 55px;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    border: 2px solid #2CC9B4;
    text-decoration: none;
    display: flex;
    width: 33px;
    height: 33px;
    line-height: 1;
    justify-content: center;
    align-items: center;
    align-content: center;
    color: #000000;
	font-size: 13px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.woocommerce nav.woocommerce-pagination ul li a:hover {
	background: #2CC9B4;
	color: #fff;
}

.woocommerce nav.woocommerce-pagination ul li {
	margin: 2px;
}

.woocommerce nav.woocommerce-pagination ul.page-numbers {
	display: flex;
}

.woocommerce nav.woocommerce-pagination ul li {
	border: none;
}

.woocommerce nav.woocommerce-pagination ul li span.current {
    background: #2CC9B4;
    color: #fff;
}

.woocommerce nav.woocommerce-pagination ul {
	border: none;
}

/* Quantity */

.woocommerce .shop-qty {
	display: -ms-inline-flexbox;
	display: inline-flex;
	float: left;
	margin-right: 15px;
	margin-bottom: 15px;
	height: 45px;
}

.woocommerce .shop-qty .qty {
	width: 50px;
	text-align: center;
	border-left: none;
	border-right: none;
	border: 2px solid #2CC9B4;
	border-radius: 0;
	outline: none;
	line-height: 1;
}

.woocommerce .shop-qty .qty::-webkit-inner-spin-button,
.woocommerce .shop-qty .qty::-webkit-outer-spin-button {
	-webkit-appearance: none;
	appearance: none;
}

.woocommerce .shop-qty button.minus {
	background: #2CC9B4;
	border: 2px solid #2CC9B4;
	border-right: 0;
	font-size: 21px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	width: 30px;
	font-weight: 300;
	outline: none;
	color: #fff;
}

.woocommerce .shop-qty button.plus {
	background: #2CC9B4;
	border: 2px solid #2CC9B4;
	border-left: 0;
	font-size: 21px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	width: 30px;
	font-weight: 300;
	outline: none;
	color: #fff;
}

.woocommerce .shop-qty button.minus:hover,
.woocommerce .shop-qty button.plus:hover {
	background-color: transparent;
	color: #2CC9B4;
}

.woocommerce .shop-qty input[type="number"] {
	padding: 0;
	-moz-appearance: textfield;
}

/* Widget: Product List | Cart */

.woocommerce .widget_shopping_cart a {
	margin-bottom: 0;
}

.woocommerce .product_list_widget .star-rating {
	margin-bottom: 10px;
}

.woocommerce ul.cart_list li a,
.woocommerce ul.product_list_widget li a,
.woocommerce ul.products li.product h3 {
	font-weight: 500;
}

.woocommerce .widget_shopping_cart .widget_shopping_cart_content .mini_cart_item a img,
.woocommerce .widget ul.product_list_widget li img {
	width: 45px;
}

#add_payment_method table.cart img,
.woocommerce-cart table.cart img,
.woocommerce-checkout table.cart img {
	width: 75px;
}

/* Product */

.woocommerce .product {
	margin-bottom: 50px;
}

.woocommerce article.product .price {
	display: block;
	float: left;
	margin-top: 5px;
}

.woocommerce .product p.price {
	color: #000 !important;
	font-weight: 400;
	margin-bottom: 10px;
}

.woocommerce .product .product_title {
	font-size: 20px;
	margin-bottom: 15px;
}

.woocommerce div.product .woocommerce-product-rating {
	display: flex;
	align-items: center;
	line-height: 1;
	margin-bottom: 20px;
}

.woocommerce .star-rating:before,
.woocommerce .star-rating span,
.woocommerce p.stars a,
.woocommerce ul.products li.product h3 {
	color: #2CC9B4;
	margin-bottom: 5px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
	background: transparent;
	border-color: #000;
	border-radius: 0;
	border: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
	padding-bottom: 8px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
	border-bottom: 1px solid #000;
	color: #000;
}

.woocommerce div.product .woocommerce-tabs ul.tabs:before {
	border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
	font-weight: 400;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li:after,
.woocommerce div.product .woocommerce-tabs ul.tabs li:before,
.woocommerce #reviews .comment-reply-title {
	display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
	padding-left: 0;
	margin-bottom: 5px;
}

.woocommerce div.product .woocommerce-tabs .panel {
	padding-bottom: 20px;
	box-shadow: none;
}

.woocommerce .product h2,
.woocommerce .product h3 {
	font-size: 14px;
	margin-bottom: 20px;
	margin-top: 40px;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text {
	border: none;
	padding-top: 0;
	padding-right: 0;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta {
	font-size: 14px;
	color: #000;
	margin-bottom: 0;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta strong {
	font-weight: 500;
}

.woocommerce p.stars a {
	font-size: 14px;
}

.woocommerce #reviews #comments ol.commentlist {
	padding: 0;
}

.woocommerce #reviews #comments ol.commentlist li img.avatar {
	border: 0;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: 0;
}

.woocommerce .woocommerce-product-rating .star-rating {
	margin: 0 10px 0 0;
}

.woocommerce span.onsale {
	background-color: #2CC9B4;
    font-weight: 500;
    font-size: 14px;
    z-index: 999;
    left: 12px;
    top: 12px;
    min-width: 0;
    min-height: 0;
    display: flex;
    text-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
	line-height: 25px;
}

.woocommerce .woo_second_image {
	position: absolute;
	z-index: 1;
	top: 0;
	right: 0;
	left: 0;
	opacity: 0;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.woocommerce .woo_second_image img {
	width: 100%;
}

.woocommerce .product-images:hover .woo_second_image {
	opacity: 1;
}

.woocommerce .woo_first_image img {
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	width: 100%;
}

.woocommerce .woo_first_image.woo_single_image:hover img {
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-ms-transform: scale(1.05);
	-o-transform: scale(1.05);
	transform: scale(1.05);
}

.woocommerce .product-images {
	overflow: hidden;
	display: block;
	position: relative;
}

.woocommerce .product-images .link-product-images {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}

.woocommerce .woo_product-title {
	margin-top: 17px;
	margin-bottom: 8px;
}

.woocommerce .woo_product-title a {
	font-size: 16px;
	color: #000;
	font-weight: 500;
	text-decoration: none;
}

.woocommerce div.product span.price {
	color: #000000;
	font-size: 13px;
}

.woocommerce .star-rating {
	font-size: 12px;
	display: none;
}

.woocommerce div.product form.cart {
	margin-bottom: 10px;
	margin-top: 20px;
}

.woocommerce #review_form #respond p.comment-form-comment {
	margin-bottom: 20px;
}

.woocommerce .shopContainer .product .woocommerce-Price-amount {
	font-size: 14px;
}

.woocommerce .flex-control-thumbs img {
	width: auto!important;
}

.woocommerce .pswp--open {
	z-index: 9999;
}

.woocommerce div.product div.images .flex-control-thumbs li {
	width: auto!important;
}

.woocommerce #review_form #respond textarea {
	color: #000!important;
}

/* ================================= */
/* :::::: 12. Responsive CSS ::::::: */
/* ================================= */

@media only screen and (max-width: 1478px) {
	#woodsman_menu ul li ul ul {
		left: -100% !important;
		right: auto;
	}

	#woodsman_menu ul li ul {
		right: 0;
	}
}

@media only screen and (max-width: 1036px) {

	header nav {
		display: none;
	}

	header .logo {
		padding-bottom: 0;
	}

	header .logo h3 {
		margin-bottom: 0;
	}

	.mobile-menu {
		display: block;
		margin-left: 35px;
	}

	.cart-container {
		line-height: 1;
		bottom: 0;
	}

	footer .col-md-flex-12.col-md-flex-6,
	footer .col-md-flex-12.col-md-flex-4,
	footer .col-md-flex-12.col-md-flex-3 {
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 100%;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}

	.shopContainer.columns-3 .product,
	.shopContainer.columns-4 .product {
		width: 48.5%;
	}

	.contact-inner-box {
		width: 75% !important;
	  }

	  .subscribe {
		flex-direction: column;
	  }

	  .subscribe input[type="email"] {
		margin-bottom: 15px;
		border-right: solid 1px #fff;
	  }

	  .contact-form input[type="submit"], .subscribe button, .subscribe input[type="email"] {
		width: 100%;
	  }

	  .team-box, .services-box {
		margin-bottom: 90px;
	  }

	  .wpcf7 form .wpcf7-response-output {
		margin: 0;
	  }

	  .contact-form .wpcf7-spinner {
		margin: 0 auto;
	  }


}

@media only screen and (max-width: 768px) {

	.footer .social-icons {
		float: none;
		text-align: center;
		margin: 0 auto;
		margin-top: 10px;
	}

	.footer .copyright {
		margin: 0;
		float: none;
		text-align: center;
	}

	.footer .footer-content {
		flex-direction: column;
		align-items: center;
	}

	.blogContainer .blog-column-two,
	.blogContainer .blog-column-three {
		width: 100%;
	}

	.woocommerce td.product-quantity {
		padding: 42px 12px 42px 12px !important;
	}

	.woocommerce table.shop_table .product-remove {
		padding-left: 0;
	}

	.woocommerce .product-remove a {
		margin: 0 auto;
	}

	.cart-widget .quantity {
		float: none !important;
		text-align: left !important;
	}

	.woocommerce td.product-quantity .shop-qty {
		margin: 0 0 0 auto;
	}

	.woocommerce .product-remove a {
		margin: 0 auto;
	}

	.woocommerce table.shop_table .product-remove {
		padding-left: 0;
	}

	.woocommerce table td.product-quantity {
		display: flex !important;
	}

	.woocommerce .woocommerce-ordering,
	.woocommerce-page .woocommerce-ordering {
		float: none;
		text-align: right;
		margin-bottom: 40px;
		max-width: auto;
	}

	.blog-minimal .col-md-5, .blog-minimal .col-md-7 {
    	width: 100%;
	}

	.blog-minimal .col-md-5 {
		padding-right: 0;
	}

	.blog-minimal .col-md-5 .image-box {
		height: 400px;
	}

	.blog-minimal .entry-header {
		flex-direction: column;
	}

	.subscribe-box input[type=email] {
		width: 50%;
	}

}

@media only screen and (max-width: 667px) {
	#comments .comment-list ul.children {
        padding: 0;
        margin: 0;
    }

	.cover-section #audio_visualizers .toggle-btn {
		right: 70px;
		bottom: 70px;

	}

}

@media only screen and (max-width: 540px) {

	.shopContainer.columns-3 .product,
	.shopContainer.columns-4 .product {
		width: 100%;
	}

	.shopContainer.columns-3 .product-category,
	.shopContainer.columns-4 .product-category {
		width: 100%;
		text-align: center;
	}

	.post .post-details {
		flex-direction: column;
	}

	.contact-inner-box {
		width: 100% !important;
	}

}

@media only screen and (max-width: 320px) {
	.cart-container .cart-widget {
		right: -118px;
	}
}