@font-face {
	font-family: 'Roboto-Regular';
	src: url('../fonts/roboto/Roboto-Regular.otf') format('opentype');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'Roboto-Light';
	src: url('../fonts/roboto/Roboto-Light.otf') format('opentype');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'Oswald-Regular';
	src: url('../fonts/oswald/Oswald-Regular.eot');
	src: url('../fonts/oswald/Oswald-Regular.eot?#iefix') format('embedded-opentype'),
		url('../fonts/oswald/Oswald-Regular.ttf') format('truetype'),
		url('../fonts/oswald/Oswald-Regular.svg#Oswald-Regular') format('svg');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'Oswald-Light';
	src: url('../fonts/oswald/Oswald-Light.eot');
	src: url('../fonts/oswald/Oswald-Light.eot?#iefix') format('embedded-opentype'),
		url('../fonts/oswald/Oswald-Light.ttf') format('truetype'),
		url('../fonts/oswald/Oswald-Light.svg#Oswald-Light') format('svg');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'Oswald-ExtraLight';
	src: url('../fonts/oswald/Oswald-ExtraLight.eot');
	src: url('../fonts/oswald/Oswald-ExtraLight.eot?#iefix') format('embedded-opentype'),
		url('../fonts/oswald/Oswald-ExtraLight.ttf') format('truetype'),
		url('../fonts/oswald/Oswald-ExtraLight.svg#Oswald-ExtraLight') format('svg');
	font-weight: 200;
	font-style: normal;
}
@font-face {
	font-family: 'Oswald-SemiBold';
	src: url('../fonts/oswald/Oswald-SemiBold.eot');
	src: url('../fonts/oswald/Oswald-SemiBold.eot?#iefix') format('embedded-opentype'),
		url('../fonts/oswald/Oswald-SemiBold.ttf') format('truetype'),
		url('../fonts/oswald/Oswald-SemiBold.svg#Oswald-SemiBold') format('svg');
	font-weight: 600;
	font-style: normal;
}
@font-face {
	font-family: 'Oswald-Bold';
	src: url('../fonts/oswald/Oswald-Bold.eot');
	src: url('../fonts/oswald/Oswald-Bold.eot?#iefix') format('embedded-opentype'),
		url('../fonts/oswald/Oswald-Bold.ttf') format('truetype'),
		url('../fonts/oswald/Oswald-Bold.svg#Oswald-Bold') format('svg');
	font-weight: bold;
	font-style: normal;
}
@font-face {
	font-family: 'Oswald-Medium';
	src: url('../fonts/oswald/Oswald-Medium.eot');
	src: url('../fonts/oswald/Oswald-Medium.eot?#iefix') format('embedded-opentype'),
		url('../fonts/oswald/Oswald-Medium.ttf') format('truetype'),
		url('../fonts/oswald/Oswald-Medium.svg#Oswald-Medium') format('svg');
	font-weight: 500;
	font-style: normal;
}
@font-face {
	font-family: 'Oswald-Regular';
	src: url('../fonts/oswald/Oswald-Regular.eot');
	src: url('../fonts/oswald/Oswald-Regular.eot?#iefix') format('embedded-opentype'),
		url('../fonts/oswald/Oswald-Regular.ttf') format('truetype'),
		url('../fonts/oswald/Oswald-Regular.svg#Oswald-Regular') format('svg');
	font-weight: 300;
	font-style: normal;
}
* {
	border: 0;
	margin: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
html, body {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
}
body {
	background: #ededed;
	font-family: 'Oswald-Regular', sans-serif;
}
body.modal-open {
	overflow: hidden;
}
a {
	color: #7b7b7b;
	text-transform: uppercase;
	text-decoration: none;
}
a:hover {
	
}
ul.menu {
	margin: 0;
	padding: 0;
	list-style: none;
}
.flex {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
}
.flex-1 {
	flex: 1;
}
.flex-row {
	flex-direction: row;
}
.flex-column {
	flex-direction: column;
}
.align-items-center {
	align-items: center;
}
.align-items-start {
	align-items: flex-start;
}
.align-items-end {
	align-items: flex-end;
}
.justify-content-center {
	justify-content: center;
}
.justify-content-start {
	justify-content: flex-start;
}
.justify-content-between {
	justify-content: space-between;
}
.justify-content-end {
	justify-content: flex-end;
}
.hr {
	border: 0;
	height: 1px;
	background-image: linear-gradient(to right, rgba(204, 204, 204, 0), rgba(204, 204, 204, 0.75), rgba(204, 204, 204, 0));
}
.wrapper {
	padding-top: 83px;
}
@media (max-width: 992px) {
	.wrapper {
		padding-top: 60px;
	}
}
.container:after {
	content: '';
	display: block;
	clear: both;
}


/* Navigation */
.navigation-container {
	
}
.mobile-navigation {
	display: none;
	background: #0a0a0a;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	border-bottom: 3px solid #ce0e0e;
    -webkit-box-shadow: 0 1px 18px -6px rgba(0,0,0,.75);
    -moz-box-shadow: 0 1px 18px -6px rgba(0,0,0,.75);
    box-shadow: 0 1px 18px -6px rgba(0,0,0,.75);
}
@media (max-width: 992px) {
	.mobile-navigation  {
		display: block;
	}
	.nav-logo, .nav-search {
		display: none;
	}
}
.navigation {
	position: fixed;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	overflow-y: scroll;
	background: #0a0a0a;
	transition: left 0.4s ease;
	-webkit-overflow-scrolling: touch;
	z-index: 50;
	margin: 0 auto;
	border-bottom: 3px solid #ce0e0e;
	-webkit-box-shadow: 0 1px 18px -6px rgba(0,0,0,.75);
    -moz-box-shadow: 0 1px 18px -6px rgba(0,0,0,.75);
    box-shadow: 0 1px 18px -6px rgba(0,0,0,.75);
}
.navigation-open {
    left: 0;
}
@media (min-width: 660px) {
	.navigation {
		width: 50%;
	}
}
@media (min-width: 992px) {
	.navigation {
		left: auto;
		width: 100%;
		height: auto;
		overflow: visible;
		-webkit-overflow-scrolling: auto;
	}
}
.navigation-close {
	
	padding: 10px;
	display: block;
	letter-spacing: 0.11em;
	line-height: 1;
	text-align: right;
	text-transform: uppercase;
	color: #bec4d0;
}
@media (min-width: 992px) {
	.navigation-close {
		padding: 20px
	}
}
@media (min-width: 992px) {
	.navigation-close {
		display: none
	}
	
}
.nav-bar {
	margin: 0;
	padding: 0;
}
@media (min-width: 992px) {
.nav-bar {
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    z-index: 999;
}
}
.nav-bar-item {
	border-bottom: 1px solid #eee;
}
.nav-bar-item:last-of-type {
	border-right: none;
}
@media (min-width: 992px) {
	.nav-bar-item {
		display: inline-block;
		width: auto;
		vertical-align: bottom;
		border-bottom: none;
		font-size: 17px;
	}
}
@media (min-width: 1050px) and (max-width: 1200px) {
        .nav-bar-item {
                font-size: 13px;
        }
}
@media (min-width: 932px) and (max-width: 1049px) {
        .nav-bar-item {
                font-size: 12px;
        }
}
.nav-bar-link, .nav-bar-link-menu {
	display: inline-block;
	padding: 20px 10px;
	text-transform: uppercase;
	color: #ffffff;
	border-top: 1px solid transparent;
	border-left: 1px solid transparent;
	border-right: 1px solid transparent;
	position: relative;
	cursor: pointer;
	vertical-align: middle;
	min-height: 80px;
	width: 100%;
}
.nav-bar-link-menu-icon {
	width: 30px;
	padding-top: 5px;
}
@media (max-width: 993px) and (min-width: 820px) {
	.nav-bar-link, .nav-bar-link-menu {
		padding: 5px 15px;
		min-height: 36px
	}
	.nav-bar-link:after {
		display: none !important;
	}
	.nav-bar-link-menu-icon {
		width: 20px;
		padding-top: 5px;
	}
	.shopping-basket {
		display: none;
	}
}
@media (max-width: 819px) and (min-width: 640px) {
	.nav-bar-link, .nav-bar-link-menu {
		padding: 5px 15px;
		min-height: 36px
	}
	.nav-bar-link:after {
		display: none !important;
	}
	.nav-bar-link-menu-icon {
		width: 20px;
		padding-top: 5px;
	}
	.shopping-basket {
		display: none;
	}
}
@media (max-width: 639px) and (min-width: 420px) {
	.nav-bar-link, .nav-bar-link-menu {
		padding: 5px 15px;
		min-height: 36px
	}
	.nav-bar-link:after {
		display: none !important;
	}
	.nav-bar-link-menu-icon {
		width: 20px;
		padding-top: 5px;
	}
	.shopping-basket {
		display: none;
	}
}
@media (max-width: 419px) {
	.nav-bar-link, .nav-bar-link-menu {
		padding: 5px 15px;
		min-height: 36px
	}
	.nav-bar-link:after {
		display: none !important;
	}
	.nav-bar-link-menu-icon {
		width: 20px;
		padding-top: 5px;
	}
	.shopping-basket {
		display: none;
	}
}
.nav-bar-link:after {
	content: '';
    display: block;
    width: 100%;
    height: .25rem;
    position: relative;
    bottom: -.25rem;
    left: 0;
    z-index: 2;
    transition: background-color 250ms;
	background: #ce0e0e;
}
.nav-bar-link:hover:after {
	background: #fff;
}
@media (max-width: 993px) and (min-width: 820px) {
	
}
@media (max-width: 819px) and (min-width: 640px) {
	
}
@media (max-width: 639px) and (min-width: 420px) {
	
}
@media (max-width: 419px) {
	
}

.nav-bar-link:hover, .nav-bar-link.active, .nav-bar-link-menu:hover, .nav-bar-link-menu.active {
	background: #ce0e0e;
}
@media (min-width: 992px) {
	.nav-bar-link {
		
	}
}
@media (max-width: 992px) {

	a.nav-bar-link:hover:after {
		border-color: transparent;
	}
}
.nav-bar-link-active {
	background: #ce0e0e;
	color: white;
}
@media (min-width: 992px) {
	.nav-bar-line {
		display: block
	}
}
.nav-panel {
	display: none;
	color: gray;
	overflow: auto;
	background: #fcfcfc;
	z-index: 10001;
	box-shadow: 0 4px 2px -2px rgba(0, 0, 0, .2);
	border-top: 3px solid #ce0e0e;
	padding-bottom: 10px;
}
@media (min-width: 992px) {
	.nav-panel {
		position: absolute;
		left: 0;
		width: 100%;
		text-align: left;
		z-index: 10001;
	}
}
.nav-panel-open {
	display: block
}
@media (min-width: 992px) {
	.nav-panel-container {
		display: table;
		width: 100%;
		margin: 0 auto;
	}
}
@media (min-width: 1500px) {
	.nav-panel-container {
		
	}
}
@media (min-width: 992px) {
	.nav-panel-column {
		display: table-cell;
		border-right: 1px solid #eee;
		vertical-align: top;
		
	}
}
@media (min-width: 992px) {
	.nav-panel-column:first-of-type {
		padding-left: 0
	}
}
@media (min-width: 992px) {
	.nav-panel-column:last-of-type {
		padding-right: 0;
		border-right: none
	}
}
.nav-panel-title {
	padding: 0 10px;
	
}
.nav-panel-title-inner {
	padding: 15px 0;
    border-bottom: 1px solid #b3b3b3;
    font-size: .85em;
    font-weight: 300;
    letter-spacing: .11em;
    text-transform: uppercase;
	
	line-height: 1;

	max-width: 1260px;
	margin: 0 auto;
}
.nav-panel-group {
	
}
@media (min-width: 992px) {
	.nav-panel-group {
		display: table;
		table-layout: fixed;
		width: 100%;
		max-width: 1260px;
		padding: 0;
		margin: 0 auto;
	}
}
@media (min-width: 992px) {
	.nav-panel-group-item {
		display: table-cell;
		vertical-align: top
	}
	.nav-panel-group-item.popular {
		width: 50%;
	}
	.nav-panel-group-item:last-of-type {
		
	}
}
.nav-products {
	background-repeat: no-repeat;
	background-position: 100% 0px;
	background-size: contain;
}
.nav-panel-list {
	margin: 0 5px 5px 5px;
	padding: 0 25px;
}
.nav-panel-list li a {
        font-weight: 400;
	font-size: 18px;
}
.nav-panel-list:first-of-type {
	
}
.nav-link {
	position: relative;
	display: block;
/*	font-size: 0.8em; */
	letter-spacing: 0.06em;
/*	line-height: 1.6;  */
	text-transform: uppercase;
	color: #562345;
/*	padding: 1px 0; */
}
@media (min-width: 992px) {
	.nav-link:hover, .nav-link.active {
		color: #FF7010
	}
}
.nav-link-sub-link {
	letter-spacing: normal;
	text-transform: none;
	color: gray;
	margin-top: 5px
}
.nav-link-icon {
	padding: 17px 0 16px 40px;
	border-bottom: 1px solid #eee;
	margin-bottom: -10px
}
.nav-link-icon-compact {
	padding: 10px 0 10px 40px;
	margin-bottom: -10px
}
.nav-link-icon-last {
	margin-bottom: 0
}
.nav-link-icon {
	position: absolute;
	left: 0;
	top: 50%;
	display: block;
	width: 30px;
	height: 30px;
	margin-top: -15px;
	font-size: 30px;
	line-height: 30px
}


/* Slideshow */
.slideshow {
	
}
.slideshow img {
	max-width: 100%;
	width: auto;
	height: auto;
	margin: 0 auto;
	display: block;
}
/* Product Grid */
.product-grid {
	
}
@media (max-width: 992px) {
	.product-grid {
		padding: 0 5px;
	}
}
.product-grid .product-item {
	text-align: center;
}
.product-grid .product-item .product-image {
	overflow: hidden;
}
.product-grid .product-item .product-image a {
	width: 100%;
}
.product-grid .product-item .product-image img {
	max-width: 100% !important;
	width: auto !important;
	height: auto !important;
	margin: 0 auto;
	display: block;
	transform: translateY(-5px);
	transition: transform 250ms;
}
.product-grid .product-item .product-info {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: #fff;
	transition: all 200ms cubic-bezier(.215,.61,.355,1);
	padding: 10px 5px;
	cursor: pointer;
	border-top: 1px solid #e5e5e5;
}
.product-grid .product-item:hover .product-image img {
	transform: translateY(0px);
}
.product-info .product-images .mainImage {
    width: 100%;
    height: 100%;
	min-width: 350px;
	min-height: 350px;
    flex: 1;
	background: white;
}
.product-info .thumbImage {
    min-height: 100px;
    min-width: 100px;
    height: 100%;
    width: 100%;
    display: inline-block;
    cursor: pointer;
	background: white;
}
.product-info .add-to-cart {
	background-color: rgb(64, 215, 75);
	cursor: pointer;
	padding: 10px 1.25rem;
	border-radius: .125rem;
	border: none;
	color: #fff;
	text-transform: uppercase;
	font-size: 1.2em;
	outline: none;
	font-family: 'Oswald-Regular', sans-serif; 
}
.product-grid .product-item:hover .product-info {
	background: #bdbdbd;
	color: white;
	padding: 10px 0;
}
.product-grid .product-item:hover .product-info:after {
	/*border-right: solid 1px #817e80;*/
}


/* Filter Checkboxes */
.filter-checkbox-wrapper {
	position: relative;
	display: block;
/* 	color: #333; */
	cursor: pointer;
	padding: 5px 0;
}
.filter-checkbox-wrapper:after {
	display: block;
	content: '';
	clear: both;
}
.filter-checkbox-wrapper .filter-checkbox {
 	position: relative;
	float: left;
	cursor: pointer;
	vertical-align: text-bottom;
	width: 20px;
	height: 20px;
	margin: 0;
	padding: 0;
}
.filter-checkbox-wrapper .filter-checkbox:after {
    width: auto;
    height: auto;
    content: "";
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 2;
    cursor: pointer;
    position: absolute;
    background: #fff;
    border: 1.25px solid #d0d5da; 
}
.filter-checkbox:checked:after {
    color: #000;
    margin-bottom: 40px;
    border: 0px; 
}
.filter-checkbox-wrapper .filter-label {
    color: #333;
	margin-left: 30px;
	cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    vertical-align: middle;
}
.form-select {
	background-color: #f3f3f3;
    font-family: inherit;
    border: 1px solid rgba(0,0,0,.1);
    color: rgba(0,0,0,.75);
    display: block;
    font-size: 1rem;
    padding: .5rem;
    min-height: 2.313rem;
    border-radius: 0;
    width: 100%;
    transition: border-color .15s linear,background .15s linear;
	outline: none;
}
select.form-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    max-width: 100%;
    background-repeat: no-repeat;
    background-image: url(../../image/select-arrows.svg);
    background-size: 24px 16px;
    background-position-x: 99%;
    background-position-y: 50%;
}
.page-title {
	margin: 10px 5px;
	padding: 0;
	
}
.supplement-facts {
	display: block;
    padding: .938rem .625rem;
	width: 100%;
    text-transform: uppercase;
    text-align: center;
    background: #000;
    color: #fff;
}

.breadcrumb {
    margin: 10px 5px;
    padding: 0;
}

.breadcrumb > li {
	display: inline-block;
    text-shadow: 0 1px 0 #FFF;
    position: relative;
    white-space: nowrap;
	text-transform: uppercase;
}
.breadcrumb > li:after {
    display: inline-block;
	font-family: "Font Awesome 5 Free"; font-weight: 900; content: "\f105";
}
.breadcrumb li:last-child:after {
	content: '';
}


/* Footer */
.footer {
	background: white;
	padding: 20px 0;
}


/* Icons */
.settings,
.phone,
.cloud,
.better-pin,
.circle,
.mail,
.chevron,
.heart,
.mouse,
.close,
.check,
.logout,
.chat,
.sliders,
.library,
.upload,
.reload,
.bookmark,
.plus,
.minus,
.backward,
.stop,
.pause,
.play,
.forward,
.hamburger,
.calendar,
.time,
.location,
.search,
.map,
.down-cloud,
.home,
.inbox,
.user-account,
.bell,
.ellipsis-x,
.ellipsis-y,
.volume-mute,
.reply {
	width: auto;
	height: auto;
	cursor: pointer;
}
.close path {
	stroke: #999;
}
.close:hover path {
	stroke: #9e0b0b;
}
.plus path, .minus path {
	stroke: #999;
}
.plus:hover path, .minus:hover path {
	stroke: green;
}
/* Loading */
.loading {
	position: relative;
	overflow-y: hidden !important;
	overflow-x: hidden !important;
}
.loading:after,
.loading:before {
	content: " "; 
	position: fixed; 
	top: 0; 
	left: 0; 
	right: 0; 
	bottom: 0; 
	min-height: 46px; 
	min-width: 46px
}
.loading:before {
	border: 1px solid;
	border-color: #f07d32 transparent #e76d20 #d46b21;
	border-radius: 50%;
	margin: auto;
	height: 46px;
	-webkit-animation: single-arc-rotate .6s infinite linear;
	animation: single-arc-rotate .6s infinite linear;
	width: 46px;
	z-index: 10;
	opacity: 1
}
.loading:after {
	background-color: #333;
	opacity: .4;
	z-index: 10003
}
@-webkit-keyframes single-arc-rotate {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}
@keyframes single-arc-rotate {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

.cart-container::before {
	content: '';
	position: fixed;
	z-index: 50;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, .3);
	opacity: 0;
	visibility: hidden;
	-webkit-transition: opacity .4s, visibility .4s;
	transition: opacity .4s, visibility .4s;
	
}
.cart-trigger, .cart {
	position: fixed;
	bottom: 5%;
	right: 5%;
	-webkit-transition: -webkit-transform .2s;
	transition: -webkit-transform .2s;
	transition: transform .2s;
	transition: transform .2s, -webkit-transform .2s;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	will-change: transform;
	backface-visibility: hidden
}
.cart-trigger {
	z-index: 70;
	height: 72px;
	width: 72px;
	text-indent: 100%;
	color: transparent;
	white-space: nowrap;
	cursor: pointer;
}
.cart-trigger::after, .cart-trigger::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	bottom: auto;
	right: auto;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	height: 100%;
	width: 100%;
	background: url(../images/cd-icons-cart-close.svg) no-repeat 0 0;
	-webkit-transition: opacity .2s, -webkit-transform .2s;
	transition: opacity .2s, -webkit-transform .2s;
	transition: opacity .2s, transform .2s;
	transition: opacity .2s, transform .2s, -webkit-transform .2s
}
.cart-trigger::after {
	background-position: -72px 0;
	opacity: 0;
	-webkit-transform: translateX(-50%) translateY(-50%) rotate(90deg);
	-ms-transform: translateX(-50%) translateY(-50%) rotate(90deg);
	transform: translateX(-50%) translateY(-50%) rotate(90deg);
	
}
.cart-trigger .count {
	position: absolute;
	top: -10px;
	right: -10px;
	height: 28px;
	width: 28px;
	background: #e94b35;
	color: #fff;
	list-style: none;
	font-size: 1em;
	font-weight: 700;
	border-radius: 50%;
	text-indent: 0;
	-webkit-transition: -webkit-transform .2s .5s;
	transition: -webkit-transform .2s .5s;
	transition: transform .2s .5s;
	transition: transform .2s .5s, -webkit-transform .2s .5s;
	margin: 0;
	padding: 0;
}
.cart-trigger .count li {
	position: absolute;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	left: 50%;
	top: 50%;
	bottom: auto;
	right: auto;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%)
}
.cart-trigger:hover + div .cart-wrapper {
	box-shadow: 0 6px 40px rgba(0, 0, 0, .3)
}
.cart {
	z-index: 60;
	width: 90%;
	height: 90%;
	max-width: 400px;
	max-height: 500px;
	pointer-events: none
}
.cart .cart-wrapper {
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 60;
	overflow: hidden;
	height: 72px;
	width: 72px;
	border-radius: 6px;
	-webkit-transition: height .4s .1s, width .4s .1s, box-shadow .3s;
	transition: height .4s .1s, width .4s .1s, box-shadow .3s;
	-webkit-transition-timing-function: cubic-bezier(.67, .17, .32, .95);
	transition-timing-function: cubic-bezier(.67, .17, .32, .95);
	background: #fff;
	box-shadow: 0 4px 20px rgba(0, 0, 0, .30);
	pointer-events: auto;
}
.empty .cart-trigger, .empty .cart {
	-webkit-transform: translateY(150px);
	-ms-transform: translateY(150px);
	transform: translateY(150px)
}
.empty .cart-trigger .count {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1)
}
.pulse:after {
	content: "";
	border-radius: 50%;
	height: 40px;
	width: 40px;
	position: absolute;
	margin: -6px 0 0 -6px;
	-webkit-animation: pulsate 1s ease-out;
	-moz-animation: pulsate 1s ease-out;
	-o-animation: pulsate 1s ease-out;
	-ms-animation: pulsate 1s ease-out;
	animation: pulsate 1s ease-out;
	-webkit-animation-iteration-count: infinite;
	-moz-animation-iteration-count: infinite;
	-o-animation-iteration-count: infinite;
	-ms-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	opacity: 0;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
	-webkit-box-shadow: 0 0 1px 2px #e94b35;
	box-shadow: 0 0 1px 2px #e94b35;
}

@-moz-keyframes pulsate {
	0% {
		-webkit-transform: scale(0.1, 0.1);
		-moz-transform: scale(0.1, 0.1);
		-o-transform: scale(0.1, 0.1);
		-ms-transform: scale(0.1, 0.1);
		transform: scale(0.1, 0.1);
		opacity: 0;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
		filter: alpha(opacity=0);
	}
	50% {
		opacity: 1;
		-ms-filter: none;
		filter: none;
	}
	100% {
		-webkit-transform: scale(1.2, 1.2);
		-moz-transform: scale(1.2, 1.2);
		-o-transform: scale(1.2, 1.2);
		-ms-transform: scale(1.2, 1.2);
		transform: scale(1.2, 1.2);
		opacity: 0;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
		filter: alpha(opacity=0);
	}
}

@-webkit-keyframes pulsate {
	0% {
		-webkit-transform: scale(0.1, 0.1);
		-moz-transform: scale(0.1, 0.1);
		-o-transform: scale(0.1, 0.1);
		-ms-transform: scale(0.1, 0.1);
		transform: scale(0.1, 0.1);
		opacity: 0;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
		filter: alpha(opacity=0);
	}
	50% {
		opacity: 1;
		-ms-filter: none;
		filter: none;
	}
	100% {
		-webkit-transform: scale(1.2, 1.2);
		-moz-transform: scale(1.2, 1.2);
		-o-transform: scale(1.2, 1.2);
		-ms-transform: scale(1.2, 1.2);
		transform: scale(1.2, 1.2);
		opacity: 0;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
		filter: alpha(opacity=0);
	}
}

@-o-keyframes pulsate {
	0% {
		-webkit-transform: scale(0.1, 0.1);
		-moz-transform: scale(0.1, 0.1);
		-o-transform: scale(0.1, 0.1);
		-ms-transform: scale(0.1, 0.1);
		transform: scale(0.1, 0.1);
		opacity: 0;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
		filter: alpha(opacity=0);
	}
	50% {
		opacity: 1;
		-ms-filter: none;
		filter: none;
	}
	100% {
		-webkit-transform: scale(1.2, 1.2);
		-moz-transform: scale(1.2, 1.2);
		-o-transform: scale(1.2, 1.2);
		-ms-transform: scale(1.2, 1.2);
		transform: scale(1.2, 1.2);
		opacity: 0;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
		filter: alpha(opacity=0);
	}
}

@keyframes pulsate {
	0% {
		-webkit-transform: scale(0.1, 0.1);
		-moz-transform: scale(0.1, 0.1);
		-o-transform: scale(0.1, 0.1);
		-ms-transform: scale(0.1, 0.1);
		transform: scale(0.1, 0.1);
		opacity: 0;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
		filter: alpha(opacity=0);
	}
	50% {
		opacity: 1;
		-ms-filter: none;
		filter: none;
	}
	100% {
		-webkit-transform: scale(1.2, 1.2);
		-moz-transform: scale(1.2, 1.2);
		-o-transform: scale(1.2, 1.2);
		-ms-transform: scale(1.2, 1.2);
		transform: scale(1.2, 1.2);
		opacity: 0;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
		filter: alpha(opacity=0);
	}
}
.continue {
	background: #40d74b;
	display: block;
	padding: 10px 15px;
	margin: 5px 0;
	border: none;
	width: 100%;
	text-decoration: none;
	text-transform: uppercase;
	text-align: center;
	background: #aaa;
	color: #fff;
	transition: .3s ease all;
	outline: none;
	cursor: pointer;
	-webkit-appearance: none;
	font-family: 'Oswald-Regular', sans-serif;
	font-size: 1em;
}
.checkout {
	background: #40d74b;
	display: block;
	padding: 10px 15px;
	margin: 5px 0;
	border: none;
	width: 100%;
	text-decoration: none;
	text-transform: uppercase;
	text-align: center;
	background: #40d74b;
	color: #fff;
	transition: .3s ease all;
	outline: none;
	cursor: pointer;
	-webkit-appearance: none;
	font-family: 'Oswald-Regular', sans-serif;
	font-size: 1em;
}
.input-wrapper {
    border: 1px solid #ccc;
    position: relative;
}
.input {
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transition: 0.5s ease-out;
    -moz-transition: 0.5s ease-out;
    -o-transition: 0.5s ease-out;
    transition: 0.5s ease-out;
}
.input-field {
    background: #f3f3f3;
    border: 1px solid rgba(0,0,0,.1);
    box-shadow: inset 0 2px 2px rgba(218, 216, 213, 0.5);
    cursor: text;
    height: 50px;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -webkit-transition: 0.5s ease-out;
    -moz-transition: 0.5s ease-out;
    -o-transition: 0.5s ease-out;
    transition: 0.5s ease-out;
}
.input-label {
    color: #99928b;
    font-size: 15px;
    position: absolute;
    padding: 3px 10px;
    text-overflow: ellipsis;
}
.input-value {
    box-sizing: border-box;
    color: #053d62;
    font-size: 18px;
    font-weight: 700;
    padding: 21px 20px 0 10px;
    padding-right: 10px;
    line-height: 25px;
    animation: .2s ease-out .2s 1 init;
    height: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.input-value input {
    width: 100%;
    font-size: 18px;
	font-family: 'Oswald-Regular', sans-serif;
    outline: none;
	background: #f3f3f3;
	color: rgba(0,0,0,.85);
}
.input-clear {
    background: rgba(153, 146, 139, 0.2);
    border-radius: 50%;
    cursor: pointer;
    height: 26px;
    position: absolute;
    right: 7px;
    top: 14px;
    width: 26px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.input-clear::before {
    height: 3px;
    width: 14px;
}
.input-clear::after {
    height: 14px;
    width: 3px;
}
.input-clear::before, .input-clear::after {
    background: #99928b;
    content: '';
    left: 50%;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.error {
	padding: 3px;
	color: #c00;
}

.example {
	display: flex;
	flex-direction: row;
	width: 100%;
	align-items: center;
	justify-content: center;
}

form.example input[type=text] {
	width: calc(100% - 40px);
    padding: 10px;
	font-family: inherit;
	font-size: 1rem;
	border: 1px solid rgba(0,0,0,.1);
    color: rgba(0,0,0,.75);
    background: #f1f1f1;
	outline: none;
}
form.example button {
	width: 40px;
	height: 46px;
    padding: 10px;
    background: #ce0e0e;
    color: white;
    cursor: pointer;
    text-align: center;
	outline: none;

	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
}
form.example button:hover {
    background: #ff0000;
}

.wrap {
    margin: 50px auto 0;
    width: 150px;
    position: relative;
}
div.items {
    font-size: 100px;
    text-align: center;
    color: #a9afb9;
}
div.items .fa {
    position: absolute;
    top: calc(50% - 0.4em);
    left: calc(50% - 0.4em);
    opacity: 0;
}
div.items .fa:nth-child(1) {
    animation: slidefade 20s 0s infinite linear;
}
div.items .fa:nth-child(2) {
    animation: slidefade 20s 2s infinite linear;
}
div.items .fa:nth-child(3) {
    animation: slidefade 20s 4s infinite linear;
}
div.items .fa:nth-child(4) {
    animation: slidefade 20s 6s infinite linear;
}
div.items .fa:nth-child(5) {
    animation: slidefade 20s 8s infinite linear;
}
div.items .fa:nth-child(6) {
    animation: slidefade 20s 10s infinite linear;
}
div.items .fa:nth-child(7) {
    animation: slidefade 20s 12s infinite linear;
}
div.items .fa:nth-child(8) {
    animation: slidefade 20s 14s infinite linear;
}
div.items .fa:nth-child(9) {
    animation: slidefade 20s 16s infinite linear;
}
div.items .fa:nth-child(10) {
    animation: slidefade 20s 18s infinite linear;
}
i.fa-search {
    color: #a9afb9;
    position: absolute;
    z-index: 2;
}
i.search-1 {
    font-size: 20px;
    top: 5px;
    left: 0;
    top: -10px;
    left: -15px;
    animation: rotcw 5s infinite linear;
}
i.search-2 {
    font-size: 12px;
    top: 10px;
    right: 15px;
    top: -5px;
    right: 0;
    animation: rotcw 4s infinite linear;
}
i.search-3 {
    font-size: 12px;
    bottom: 0;
    left: 5px;
    bottom: -15px;
    left: -10px;
    animation: rotccw 4.4s infinite linear;
}
i.search-4 {
    font-size: 20px;
    bottom: -5px;
    right: 0;
    bottom: -20px;
    right: -15px;
    animation: rotccw 5.5s infinite linear;
}
@keyframes slidefade {
    0% {
        opacity: 0;
        transform: translate(50px, 0);
    }
    4.5% {
        opacity: 1;
        transform: translate(10px, 0);
    }
    10.5% {
        opacity: 1;
        transform: translate(-10px, 0);
    }
    15% {
        opacity: 0;
        transform: translate(-50px, 0);
    }
    100% {
        opacity: 0;
        transform: translate(50px, 0);
    }
}
@keyframes rotcw {
    from {
        transform: rotate(0deg) translate(5px) rotate(0deg);
    }
    to {
        transform: rotate(360deg) translate(5px) rotate(-360deg);
    }
}
@keyframes rotccw {
    from {
        transform: rotate(0deg) translate(5px) rotate(0deg);
    }
    to {
        transform: rotate(-360deg) translate(5px) rotate(360deg);
    }
}
.pagination {
	padding: 10px 0;
}
.pagination ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.pagination .results {
	padding: 10px 15px;
	text-transform: uppercase;
}
.pagination .links {
	padding: 10px 15px;
}
.links a {
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	padding: 10px 18px;
	color: #333;
}
.links b {
	width: 40px;
	height: 40px;
	line-height: 40px;
	background-color: #ce0e0e;
	border-radius: 100%;
	color: #fff;
	text-align: center;
	padding: 10px 18px;
}
.comments {
	position: relative;
}
h3.title {
	border-bottom: 2px solid #eaedee;
	margin: 0px;
}
h3.title span.allcomments {
	text-transform: uppercase;
	font-size: 1.2em;
	border-bottom-color: #000000;
}
h3.title span {
	display: inline-block;
	color: #000000;
	padding-bottom: 10px;
	border-bottom: 2px solid #eaedee;
	margin-bottom: -2px;
	padding-right: 15px;
}
.comments .comment {
	border-bottom: 1px solid #eee;
	padding: 10px 0;
	
}
.comments .comment .c-top .author {
	font-size: 1.2em;
	font-weight: 600;
	color: #288ce4;
	position: relative;
}
.comments .comment .c-top .date {
	font-weight: 500;
	
	color: #a5b2b9;
	color: rgba(0, 39, 59, 0.35);
}
.comments .comment .c-middle {
	padding-top: 10px;
}
input.stars {
	display: none;
}
#star-1:checked~div [for='star-1'] svg,
#star-2:checked~div [for='star-1'] svg,
#star-2:checked~div [for='star-2'] svg,
#star-3:checked~div [for='star-1'] svg,
#star-3:checked~div [for='star-2'] svg,
#star-3:checked~div [for='star-3'] svg,
#star-4:checked~div [for='star-1'] svg,
#star-4:checked~div [for='star-2'] svg,
#star-4:checked~div [for='star-3'] svg,
#star-4:checked~div [for='star-4'] svg,
#star-5:checked~div [for='star-1'] svg,
#star-5:checked~div [for='star-2'] svg,
#star-5:checked~div [for='star-3'] svg,
#star-5:checked~div [for='star-4'] svg,
#star-5:checked~div [for='star-5'] svg {
    -webkit-transform: scale(1);
    transform: scale(1);
}
#star-1:checked~div [for='star-1'] svg path,
#star-2:checked~div [for='star-1'] svg path,
#star-2:checked~div [for='star-2'] svg path,
#star-3:checked~div [for='star-1'] svg path,
#star-3:checked~div [for='star-2'] svg path,
#star-3:checked~div [for='star-3'] svg path,
#star-4:checked~div [for='star-1'] svg path,
#star-4:checked~div [for='star-2'] svg path,
#star-4:checked~div [for='star-3'] svg path,
#star-4:checked~div [for='star-4'] svg path,
#star-5:checked~div [for='star-1'] svg path,
#star-5:checked~div [for='star-2'] svg path,
#star-5:checked~div [for='star-3'] svg path,
#star-5:checked~div [for='star-4'] svg path,
#star-5:checked~div [for='star-5'] svg path {
    fill: #FFBB00;
    stroke: #cc9600;
}
label.star {
    display: inline-block;
    width: 40px;
    text-align: center;
    cursor: pointer;
}
label.star svg {
    width: 100%;
    height: auto;
    fill: white;
    stroke: #CCC;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    -webkit-transition: -webkit-transform 200ms ease-in-out;
    transition: -webkit-transform 200ms ease-in-out;
    transition: transform 200ms ease-in-out;
    transition: transform 200ms ease-in-out, -webkit-transform 200ms ease-in-out;
}
label.star svg path {
    -webkit-transition: fill 200ms ease-in-out, stroke 100ms ease-in-out;
    transition: fill 200ms ease-in-out, stroke 100ms ease-in-out;
}
.product-description img {
	max-width: 100% !important; 
	width: auto !important; 
	height: auto !important;
	margin: 0 auto;
	display: block;
}
.product-description iframe {
	min-width: 300px;
	max-width: 100% !important; 
	width: auto !important; 
	height: auto !important;
	margin: 0 auto;
	display: block;
}
.button {
    border-radius: 3px;
    padding: 10px;
    color: #fff;
	display: inline-block;
	text-decoration: none;
	border: 0;
	white-space: nowrap;
    cursor: pointer;
	font-family: 'Oswald-Regular', sans-serif;
	font-size: 1em;
}

.button.blue {
	background: #3B5998;
}
.button.blue:hover, .button.blue:focus, .button.blue:active {
    background: #115A8E;
}
.button.red {
	background: #ce0e0e;
}
.button.red:hover, .button.red:focus, .button.red:active {
	background: #DF4A32;
}
.button.green {
	background: #40d74b;
}
.button.green:hover, .button.green:focus, .button.green:active {
    background: #40d74b;
}
.button.grey {
	background: #aaa;
}
.button.grey:hover, .button.grey:focus, .button.grey:active {
    background: #aaa;
}
.button-icon {
    text-align: center;
	border-right: 1px solid rgba(255, 255, 255, 0.2);
	font-size: 1em;
	color: white;
	padding: 0 8px;
}
.button.right .button-icon {
	border-right: none;
	border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.button-name {
    text-align: center;
	text-transform: uppercase;
	padding: 0 10px;
}
.gui-input {
	position: relative;
	padding: 10px;
	background: #eee;
	border: 1px solid #bbb;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	color: #000;
	width: 100%;
	font-family: 'Oswald-Regular', sans-serif;
	font-size: 1em;
}
.gui-input:focus {
	outline: 0;
	border-color: #666;
}
.gui-input.error {
	border-color: #c00;
}
.gui-input-explain {
	display: block;
	color: #bbb;
}
.orderhistory-item {
	background: #eee;
	padding: 5px;
	margin: 3px 0;
	border-radius: 5px;
	border: 1px solid #ccc;
	cursor: pointer;
}
.orderhistory-item:hover {
	background: #ccc;
}
.information-description {
	font-family: 'Roboto-Light';
    -webkit-font-smoothing: antialiased;
	line-height: normal;
	font-weight: normal;
    text-align: justify;
    text-justify: inter-word;
}
.information-description p {
	margin: 10px 0;
    text-align: justify;
    text-justify: inter-word;
}
.information-description h2:after {
    content: '';
    display: block;
    height: 1px;
    width: 100%;
    position: relative;
    bottom: -.25rem;
    left: 0;
    z-index: 2;
    margin-bottom: 10px;
    transition: background-color 250ms;
    background: #ce0e0e;
}
.information-description a {
	text-decoration: underline;
	padding: 2px;
}
.information-description a:before {
   content: "➤ ";
}
.product-description {
    font-family: 'Roboto-Light';
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    font-weight: normal;
    text-align: justify;
    text-justify: inter-word;
}
.product-description p {
	margin: 10px 0;
    text-align: justify;
    text-justify: inter-word;
}
.product-description h2 {
	border-bottom: 3px solid #ce0e0e;
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	margin: 10px 0;
}
.product-video {
    position: relative;
    width: 100%;
	min-height: 150px;
	height: 0;
}
.video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.slideshow {
	position: relative;
}
.slider {
	position: relative;

}
.slide {
	
}
.slide img {
	position: relative;
	width: 100%;
}
.arrows {
	position: absolute;
	top: 43%;
	width: 100%;
}
.arrows div.tp-leftarrow {
	float: left;
	width: 45px;
    height: 45px;
	text-align: center;
	cursor: pointer;
	color: #685b4d;
}
.arrows div.tp-leftarrow svg, .arrows div.tp-rightarrow svg {
	fill: #666;
}
.arrows div.tp-leftarrow:hover svg {
	fill: #fff;
}
.arrows div.tp-rightarrow {
	float: right;
	width: 45px;
    height: 45px;
	text-align: center;
	cursor: pointer;
	color: #685b4d;
}
.arrows div.tp-rightarrow:hover svg {
	fill: #fff;
}
.arrows:after {
	content: '';
	display: block;
	clear: both;
}
.slide.ng-hide-add, .slide.ng-hide-remove {
	
}
.slide.ng-hide-add.ng-hide-add-active,.slide.ng-hide-remove {
	opacity: 0;
	display: none;
}
.slide.ng-hide-add,.slide.ng-hide-remove.ng-hide-remove-active {
	display: block;
	opacity: 1;
	transition: all .1s ease-in-out;
}
.navbar-default {
    background-color: #0a0a0a;
    box-shadow: 0 1px 18px -6px rgba(0,0,0,.75);
}
.navbar-default.active {
    position: fixed;
    top: 87px;
    left: 0;
    right: 0;
    z-index: 999;
}
@media (max-width: 819px) {
	.navbar-default {
		display: none;
	}
}
.navbar-product {
    position: fixed;
	top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 4px 2px -2px rgba(0,0,0,.2);
    transition: transform .05s ease-in , -webkit-transform .05s ease-in;
    -webkit-transform: translate(0,-100%);
    -ms-transform: translate(0,-100%);
    -o-transform: translate(0,-100%);
    transform: translate(0,-100%);
    transform: translate3d(0,-100%,0);
    -webkit-transform: translate3d(0,-100%,0);
    min-height: 87px;
    z-index: 1000;
}
.navbar-product.active {
    top: 0;
    left: 0;
    right: 0;
    -webkit-transform: translate(0,0);
    -ms-transform: translate(0,0);
    -o-transform: translate(0,0);
    transform: translate(0,0);
    transform: translate3d(0,0,0);
    -webkit-transform: translate3d(0,0,0);
}
.navbar-nav > li {
	display: inline-block;
	color: #fff;
	position: relative;
	padding: 5px 8px;
}
.navbar-nav > li > a {
	white-space: nowrap;
	color: #fff;
	text-decoration: none;
	padding: 5px 15px;
	border-radius: 3px;
	line-height: 40px;
	text-transform: uppercase;
	cursor: pointer;
}
.navbar-nav > li > a:hover,
.navbar-nav > li > a.active,
.navbar-nav > li > a.active:hover {
	background-color: #40d74b;
}
.navbar-nav > li > a.active {
	color: #ffffff;
}
.attribute {
    border-collapse: collapse;
    width: 100%;
    border-top: 1px solid #E4E4E4;
    border-left: 1px solid #E4E4E4;
	border-spacing: 0;
}
.attribute thead td, .attribute thead tr td:first-child {
    color: #333745;
	font-weight: 600;
    background: #f4f4f4;
    text-align: left;
	text-transform: uppercase;
}
.attribute tr td:first-child {
    text-align: left;
    width: 35%;
}
.attribute td {
    padding: 7px;
    color: #333745;
    text-align: center;
    vertical-align: top;
    border-right: 1px solid #E4E4E4;
    border-bottom: 1px solid #E4E4E4;
	text-align: left;
}
@media screen and (max-width: 768px) {
	.popular { display: none; }
}

.popular ol li a {
	font-weight: 400;
/*	color: #ce0e0e; */
	color: #000; 
	transition: color 300ms ease-in;
}
.popular ol li span {
	margin-left: .125rem;
	font-weight: 400;
	color: #bbb;
	text-decoration: none;
	font-size: .938rem;
}
.shadow-1,
.language-dropdown ul.lang-list,
.language-dropdown label {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
.shadow-2,
.language-dropdown.open label {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}
.shadow-3 {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}
.shadow-4 {
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}
.shadow-5 {
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
}
.language-dropdown {
	display: inline-block;
    padding: 16px 10px;
	position: relative;
}
.language-dropdown .lang-us .flag {
    background-image: url("/frontend/images/flags/us.png");
}
.language-dropdown .lang-eu .flag {
    background-image: url("/frontend/images/flags/eu.png");
}
.language-dropdown .lang-de .flag {
    background-image: url("/frontend/images/flags/de.png");
}
.language-dropdown .lang-uk .flag {
    background-image: url("/frontend/images/flags/uk.png");
}
.language-dropdown .lang-gr .flag {
    background-image: url("/frontend/images/flags/gr.png");
}
.language-dropdown label,
.language-dropdown ul li {
    display: block;
    width: 50px;
    height: 38px;
    padding: 0px 6px;
    cursor: pointer;
}
.language-dropdown ul li {
	background: #fff;
}
.language-dropdown ul.lang-list {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    z-index: 1;
	margin: 0;
    padding: 0;
}
.language-dropdown ul.lang-list li {
    border-bottom: 1px solid #ECECEC;
}
.language-dropdown ul.lang-list li:last-child {
    border-bottom-right-radius: 2px;
    border-bottom-left-radius: 2px;
}
.language-dropdown ul.lang-list li.selected {
    display: none;
}
.language-dropdown label {
    position: relative;
    border-radius: 3px;
    z-index: 2;
}
.language-dropdown .lang-flag .flag,
.language-dropdown .lang-list .lang .flag {
    float: left;
    width: 100%;
    height: 100%;
    cursor: pointer;
    background-size: 35px 35px;
    background-repeat: no-repeat;
    background-position: center;
}
.language-dropdown.open ul.lang-list {
    visibility: visible;
    opacity: 1;
}
.language-dropdown.open label {
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}
.animate,
.lang-flag,
.lang-list {
    cursor: pointer;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -ms-transition: all .5s;
    transition: all .5s;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
}
.h3-style {
        margin: 0;
        color: #333;
}
@media screen and (max-width: 1015px) {
        .m-p-block {
                background: #313131;
                color: #fff;
                padding: 5px;
        }
        .m-product {
/*                background: #464646; */
/*                color: #fff; */
                padding: 5px;
		min-height: 120px;
        }
        .h3-style {
/*                color: #fff; */
        }
}
.m-step {
        display: inline-block;
}
@media screen and (max-width: 640px) {
        .m-step {
                display: none;
        }
}
@media screen and (min-width: 640px) {
        .m-step-1 {
                display: none;
        }
}
h2 {
        font-size: 16px;
}
@media (max-width: 992px) {
        .search, .m-flag {
                display: none;
        }
        .m-hidden {
                display: none;
        }
        .nav-product-image, .popular {
                display: none;
        }
        .m-search, .m-lang, .language-dropdown {
                display: inline-block;
                padding: 0px;
        }
}
.m-search-input {
	display: none;
}
.fab:hover {
  opacity: 0.7;
}
.play:before {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  content: "\f144";
  font-family: "Font Awesome 5 Free";
  font-size: 70px;
  color: #fff;
  opacity: 0.8;
  text-shadow: 0px 0px 30px rgba(0, 0, 0, 0.5);
}
.play:hover:before {
  color: #eee;
}
.h1-style {
    display: block;
    font-size: 2em;
    margin-block-start: 0.67em;
    margin-block-end: 0.67em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
    margin-left: 6px;
}
.videoreview-description {
	position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}
.videoreview-description iframe, .videoreview-description object, .videoreview-description embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
a.download-button:before {
	content: '';
}
span.download-button {
	color: white;
}
