@charset "UTF-8";

/** * [Table of contents] *   1 Base *     1.1 Reset Styles *     1.2 Context Styles *     1.3 Page layout *     1.4 Offsets *   2 Utilities *     2.1 Backgrounds *     2.2 Grid modules *     2.3 Utilities custom *     2.4 Row spacing *     2.5 Sections *     2.6 Text styling *   3 Plugins *     3.1 Animate *     3.2 Preloader *     3.3 Lightgallery *     3.4 Nav custom *   4 Components *     4.1 Typography *     4.2 Brand *     4.3 Links *     4.4 Blocks *     4.5 Boxes *     4.6 Groups *     4.7 Responsive units *     4.8 Lists *     4.9 Images *     4.10 Icons *     4.11 Tables custom *     4.12 Buttons *     4.13 Forms *     4.14 Quotes *     4.15 Thumbnails *     4.16 Breadcrumbs *     4.17 Pagination custom *     4.18 Snackbars *     4.19 Footers *   5 Fonts *     5.1 Font Awesome Icons 4.7.0 *     5.2 Material Design Icons */


/** @group Base */

@font-face {
  font-family: 'Friz-Quadrata';
  src: url('../fonts/Friz_Quadrata_Regular.ttf');
}
@font-face {
  font-family: 'The-Sans';
  src: url('../fonts/thesans.ttf');
}

@font-face {
  font-family: 'SansPricing';
  src: url('../fonts/sanspriccing.ttf');
}

h1, h2, h3{
    font-family: 'Friz-Quadrata';
    text-transform: uppercase;
    color: #cfa04f!important;
}
h4,h5,h6{
    font-family: 'Friz-Quadrata';
}
/** @section Reset Styles*/
input[type="checkbox"]:checked{
    background-color:#cfa04f;
}
::-webkit-scrollbar {
    width: 12px;
}
 
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 
    border-radius: 10px;
}
 
::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); 
}
@import url('https://fonts.googleapis.com/css2?family=Meddon&display=swap');
a:focus,
button:focus {
	outline: none !important;
}

button::-moz-focus-inner {
	border: 0;
}

*:focus {
	outline: none;
}

blockquote {
	padding: 0;
	margin: 0;
}

input,
button,
select,
textarea {
	outline: none;
}

label {
	margin-bottom: 0;
}

p {
	margin: 0;
}

ul,
ol {
	list-style: none;
	padding: 0;
	margin: 0;
}

ul li,
ol li {
	display: block;
}

dl {
	margin: 0;
}

dt,
dd {
	line-height: inherit;
}

dt {
	font-weight: inherit;
}

dd {
	margin-bottom: 0;
}

cite {
	font-style: normal;
}

form {
	margin-bottom: 0;
}

blockquote {
	padding-left: 0;
	border-left: 0;
}

address {
	margin-top: 0;
	margin-bottom: 0;
}

figure {
	margin-bottom: 0;
}

html p a:hover {
	text-decoration: none;
}


/** @section Context Styles */

.context-dark,
.bg-gray-700,
.bg-accent,
.context-dark h1,
.bg-gray-700 h1,
.bg-accent h1,
.context-dark h2,
.bg-gray-700 h2,
.bg-accent h2,
.context-dark h3,
.bg-gray-700 h3,
.bg-accent h3,
.context-dark h4,
.bg-gray-700 h4,
.bg-accent h4,
.context-dark h5,
.bg-gray-700 h5,
.bg-accent h5,
.context-dark h6,
.bg-gray-700 h6,
.bg-accent h6,
.context-dark [class^='heading-'],
.bg-gray-700 [class^='heading-'],
.bg-accent [class^='heading-'] {
	color: #fff;
}


/** @section Page layout */

.hoverZoom .banner_image{
	  -ms-transition: all 1s ease;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.hoverZoom:hover .banner_image{
 -ms-transform: scale(1.1, 1.1);
  -webkit-transform: scale(1.1, 1.1);
  -moz-transform: scale(1.1, 1.1);
  -o-transform: scale(1.1, 1.1); 
  transform: scale(1.1, 1.1);
}
.page:not(.side-sticky) {
	position: relative;
	overflow: hidden;
	min-height: 100vh;
	opacity: 0;
}

.page.fadeIn {
	animation-timing-function: ease-out;
}

.page.fadeOut {
	animation-timing-function: ease-in;
}

[data-x-mode] .page {
	opacity: 1;
}

html.boxed body {
	background: #edeff4 url(../images/bg-pattern-boxed.png) repeat fixed;
}

@media (min-width: 1630px) {
	html.boxed .page {
		max-width: 1600px;
		margin-left: auto;
		margin-right: auto;
		box-shadow: 0 0 23px 0 rgba(1, 1, 1, 0.1);
	}
	html.boxed .rd-navbar-static {
		max-width: 1600px;
		margin-left: auto;
		margin-right: auto;
	}
	html.boxed .rd-navbar-static.rd-navbar--is-stuck {
		max-width: 1600px;
		width: 100%;
		left: calc(50% - 1600px);
		right: calc(50% - 1600px);
	}
}


/** @section Offsets */

*+p {
	margin-top: 15px;
}

h2+p,
.heading-2+p {
	margin-top: 12px;
}

p+h2,
p+.heading-2 {
	margin-top: 15px;
}

p+p {
	margin-top: 12px;
}

img+p {
	margin-top: 15px;
}

h3+img {
	margin-top: 42px;
}

*+.row {
	margin-top: 30px;
}

*+.big:not(.offset-top-0) {
	margin-top: 20px;
}

*+.text-block {
	margin-top: 30px;
}

*+.button {
	margin-top: 30px;
}

.row+h3,
.row+.heading-3 {
	margin-top: 80px;
}

.container+.container {
	margin-top: 35px;
}

.row+.row {
	margin-top: 35px;
}

@media (min-width: 1200px) {
	*+.rd-form {
		margin-top: 30px;
	}
	.container+.container {
		margin-top: 60px;
	}
	.row+.row {
		margin-top: 60px;
	}
}

.offset-top-0 {
	margin-top: 0;
}

.offset-right-30 {
	margin-right: 30px;
}

.offset-top-20 {
	margin-top: 20px;
}

.offset-top-6 {
	margin-top: 6px;
}

.offset-top-45 {
	margin-top: 45px;
}

.offset-lg-top-0 {
	margin-top: 20px;
}

@media (min-width: 992px) {
	.offset-lg-top-0 {
		margin-top: 0;
	}
}


/** @group Utilities */


/** @section Backgrounds */

.context-dark .brand .brand-logo-dark,
.bg-gray-700 .brand .brand-logo-dark,
.bg-accent .brand .brand-logo-dark {
	display: none;
}

.context-dark .brand .brand-logo-light,
.bg-gray-700 .brand .brand-logo-light,
.bg-accent .brand .brand-logo-light {
	display: block;
}

.bg-default {
	background-color: #fff;
}

.bg-default:not([style*="background-"])+.bg-default:not([style*="background-"]) {
	padding-top: 0;
}

.bg-gray-100 {
	background-color: #edeff4;
}

.bg-gray-100:not([style*="background-"])+.bg-gray-100:not([style*="background-"]) {
	padding-top: 0;
}

.bg-gray-700 {
	background-color: #2c343b;
}

.bg-gray-700:not([style*="background-"])+.bg-gray-700:not([style*="background-"]) {
	padding-top: 0;
}

.bg-accent+.bg-accent {
	padding-top: 0;
}

.bg-image {
	background-size: cover;
	background-position: center;
}

@media (min-width: 992px) {
	html:not(.tablet):not(.mobile) .bg-fixed {
		background-attachment: fixed;
	}
}

.bg-primary {
	background-color: #cfa04f;
	color: #fff;
}


/** @section Grid modules */

.grid-demo {
	letter-spacing: 0;
	text-align: center;
}

.grid-demo p {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.grid-demo *+p {
	margin-top: 5px;
}

.grid-demo *+.row {
	margin-top: 20px;
}

.grid-demo .row+.row {
	margin-top: 0;
}

@media (min-width: 1200px) {
	.grid-demo {
		text-align: left;
	}
	.grid-demo p {
		white-space: normal;
		overflow: visible;
		text-overflow: unset;
	}
	.grid-demo *+p {
		margin-top: 25px;
	}
}

.grid-demo-bordered .row {
	border: 0 solid #d7d7d7;
	border-top-width: 1px;
}

.grid-demo-bordered .row:last-child {
	border-bottom-width: 1px;
}

.grid-demo-bordered [class*='col'] {
	padding: 5px 15px;
}

.grid-demo-bordered [class*='col']:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: -1px;
	border-left: 1px solid #d7d7d7;
}

@media (min-width: 768px) {
	.grid-demo-bordered [class*='col'] {
		padding: 30px;
	}
}

@media (min-width: 1200px) {
	.grid-demo-bordered [class*='col'] {
		padding: 50px 50px 45px;
	}
}

.grid-demo-underlined .row {
	border-bottom: 1px solid #d7d7d7;
}

.grid-demo-underlined [class*='col'] {
	padding: 5px 15px;
}

@media (min-width: 768px) {
	.grid-demo-underlined [class*='col'] {
		padding-top: 25px;
		padding-bottom: 25px;
	}
}

@media (min-width: 1200px) {
	.grid-demo-underlined [class*='col'] {
		padding-top: 45px;
		padding-bottom: 45px;
	}
}


/** @section Utilities custom */

.height-fill {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: stretch;
}

.height-fill>* {
	flex-grow: 1;
	flex-shrink: 0;
}

.object-inline {
	white-space: nowrap;
}

.object-inline>* {
	display: inline-block;
	min-width: 20px;
	vertical-align: top;
	white-space: normal;
}

.object-inline>*+* {
	margin-left: 5px;
}

.oh {
	position: relative;
	overflow: hidden;
}

.text-decoration-lines {
	position: relative;
	overflow: hidden;
	width: 100%;
}

.text-decoration-lines-content {
	position: relative;
	display: inline-block;
	min-width: 170px;
	font-size: 13px;
	text-transform: uppercase;
}

.text-decoration-lines-content::before,
.text-decoration-lines-content::after {
	content: '';
	position: absolute;
	height: 1px;
	background: #d7d7d7;
	top: 50%;
	width: 100vw;
}

.text-decoration-lines-content::before {
	left: 0;
	transform: translate3d(-100%, 0, 0);
}

.text-decoration-lines-content::after {
	right: 0;
	transform: translate3d(100%, 0, 0);
}

*+.text-decoration-lines {
	margin-top: 30px;
}

p.rights {
	font-size: 14px;
	color: rgba(136, 136, 136, 0.8);
}

p.rights .brand-name {
	color: #888888;
}

p.rights a {
	color: inherit;
}

p.rights a:hover {
	text-decoration: underline;
}

[style*='z-index: 1000;'] {
	z-index: 1101 !important;
}

.text-block>* {
	margin-left: .125em;
	margin-right: .125em;
}


/** @section Row spacing */

.row-0 {
	margin-bottom: 0px;
}

.row-0:empty {
	margin-bottom: 0;
}

.row-0>* {
	margin-bottom: 0px;
}

.row-15 {
	margin-bottom: -15px;
}

.row-15:empty {
	margin-bottom: 0;
}

.row-15>* {
	margin-bottom: 15px;
}

.row-20 {
	margin-bottom: -20px;
}

.row-20:empty {
	margin-bottom: 0;
}

.row-20>* {
	margin-bottom: 20px;
}

.row-30 {
	margin-bottom: -30px;
}

.row-30:empty {
	margin-bottom: 0;
}

.row-30>* {
	margin-bottom: 30px;
}

.row-50 {
	margin-bottom: -50px;
}

.row-50:empty {
	margin-bottom: 0;
}

.row-50>* {
	margin-bottom: 50px;
}

@media (min-width: 992px) {
	.row-md-30 {
		margin-bottom: -30px;
	}
	.row-md-30:empty {
		margin-bottom: 0;
	}
	.row-md-30>* {
		margin-bottom: 30px;
	}
}


/** @section Sections */

.section-sm {
	padding: 25px 0;
}

.section-md,
.section-lg,
.section-xl,
.section-xxl {
	padding: 50px 0;
}

.section-collapse+.section-collapse {
	padding-top: 0;
}

.section-collapse:last-child {
	padding-bottom: 0;
}

html [class*='section-'].section-bottom-0 {
	padding-bottom: 0;
}

@media (max-width: 991.98px) {
	section.section-md:first-of-type,
	section.section-lg:first-of-type,
	section.section-xl:first-of-type,
	section.section-xxl:first-of-type,
	section.section-xxl:first-of-type {
		padding-top: 40px;
	}
}

@media (min-width: 768px) {
	.section-md {
		padding: 60px 0;
	}
	.section-lg {
		padding: 70px 0;
	}
	.section-xl {
		padding: 85px 0;
	}
}

@media (min-width: 992px) {
	.section-lg {
		padding: 80px 0 90px;
	}
	.section-xl {
		padding: 100px 0;
	}
}

@media (min-width: 1200px) {
	.section-xl {
		padding: 115px 0;
	}
}

.section-single {
	display: flex;
	text-align: center;
}

.section-single p {
	margin-left: auto;
	margin-right: auto;
}

.section-single *+.rights {
	margin-top: 35px;
}

@media (min-width: 992px) {
	.section-single *+.rights {
		margin-top: 60px;
	}
}

.section-single .rd-mailform-wrap {
	max-width: 670px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.section-single *+.rd-mailform-wrap {
	margin-top: 20px;
}

.section-single-header {
	padding: calc(1em + 3vh) 0 calc(1em + 2vh);
}

.section-single-main {
	padding: calc(1em + 4vh) 0;
}

.section-single-footer {
	padding: calc(1em + 2vh) 0 calc(1em + 3vh);
}

.section-single-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	min-height: 100vh;
}

.section-single-inner>* {
	width: 100%;
}


/** @section Text styling */

.text-italic {
	font-style: italic;
}

.text-normal {
	font-style: normal;
}

.text-underline {
	text-decoration: underline;
}

.text-strike {
	text-decoration: line-through;
}

.font-weight-thin {
	font-weight: 100;
}

.font-weight-light {
	font-weight: 300;
}

.font-weight-regular {
	font-weight: 400;
}

.font-weight-medium {
	font-weight: 500;
}

.font-weight-sbold {
	font-weight: 600;
}

.font-weight-bold {
	font-weight: 700;
}

.font-weight-ubold {
	font-weight: 900;
}

.text-spacing-0 {
	letter-spacing: 0;
}

.text-primary {
	color: #cfa04f !important;
}

.text-gray {
	color: #888888;
}

.text-dark {
	color: #474747;
}

.text-base {
	color: #141414;
}


/** @group Plugins */

@-webkit-keyframes rd-navbar-slide-down {
	0% {
		transform: translateY(-100%);
	}
	100% {
		transform: translateY(0);
	}
}

@keyframes rd-navbar-slide-down {
	0% {
		transform: translateY(-100%);
	}
	100% {
		transform: translateY(0);
	}
}

@-webkit-keyframes rd-navbar-slide-up {
	0% {
		transform: translateY(0);
	}
	100% {
		transform: translateY(-100%);
	}
}

@keyframes rd-navbar-slide-up {
	0% {
		transform: translateY(0);
	}
	100% {
		transform: translateY(-100%);
	}
}


/** @subsection   RD Navbar** @description  Describes style declarations for RD Navbar extension** @author       Evgeniy Gusarov* @link         https://ua.linkedin.com/pub/evgeniy-gusarov/8a/a40/54a*/

@-webkit-keyframes rd-navbar-slide-down {
	0% {
		transform: translateY(-100%);
	}
	100% {
		transform: translateY(0);
	}
}

@keyframes rd-navbar-slide-down {
	0% {
		transform: translateY(-100%);
	}
	100% {
		transform: translateY(0);
	}
}

@-webkit-keyframes rd-navbar-slide-up {
	0% {
		transform: translateY(0);
	}
	100% {
		transform: translateY(-100%);
	}
}

@keyframes rd-navbar-slide-up {
	0% {
		transform: translateY(0);
	}
	100% {
		transform: translateY(-100%);
	}
}


/** @subsection General Styles*/

.rd-navbar-wrap,
.rd-navbar-static .rd-navbar-dropdown,
.rd-navbar-static .rd-navbar-megamenu,
.rd-navbar-fullwidth .rd-navbar-dropdown,
.rd-navbar-fullwidth .rd-navbar-megamenu,
.rd-navbar-fixed .rd-navbar-nav-wrap,
.rd-navbar-fixed .rd-navbar-submenu {
	transition: 0.3s all cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.rd-navbar,
.rd-navbar.rd-navbar--is-clone {
	display: none;
}

.rd-navbar-fixed,
.rd-navbar-static,
.rd-navbar-fullwidth,
.rd-navbar-sidebar {
	display: block;
}

.rd-navbar--no-transition,
.rd-navbar--no-transition * {
	transition: none !important;
}

.rd-navbar-wrap,
.rd-navbar,
.rd-navbar-brand,
.rd-navbar-slogan,
.rd-navbar-dropdown,
.rd-navbar-megamenu,
.rd-navbar-collapse-items,
.brand-name,
.rd-navbar-nav,
.rd-navbar-panel,
.rd-navbar-search-form-input,
.rd-navbar-search-form-submit,
.rd-navbar-search-toggle,
.rd-navbar-live-search-results,
.rd-navbar-search-form {
	transition: .3s all ease;
}

.rd-navbar-collapse-toggle {
	display: inline-block;
	position: relative;
	width: 48px;
	height: 48px;
	line-height: 48px;
	cursor: pointer;
	color: #141414;
	display: none;
}

.rd-navbar-collapse-toggle span {
	top: 50%;
	margin-top: -3px;
}

.rd-navbar-collapse-toggle span,
.rd-navbar-collapse-toggle span:before,
.rd-navbar-collapse-toggle span:after {
	position: absolute;
	width: 6px;
	height: 6px;
	line-height: 6px;
	text-align: center;
	background: #141414;
	left: 50%;
	margin-left: -3px;
	border-radius: 50%;
	transition: .3s all ease;
}

.rd-navbar-collapse-toggle span:before,
.rd-navbar-collapse-toggle span:after {
	content: '';
}

.rd-navbar-collapse-toggle span:before {
	bottom: 100%;
	margin-bottom: 3px;
}

.rd-navbar-collapse-toggle span:after {
	top: 100%;
	margin-top: 3px;
}

.rd-navbar-collapse-toggle.active span {
	transform: scale(0.7);
}

.rd-navbar-collapse-toggle.active span:before {
	transform: translateY(18px);
}

.rd-navbar-collapse-toggle.active span:after {
	transform: translateY(-18px);
}

.rd-navbar--has-sidebar body {
	padding-left: 270px;
}

.rd-navbar--is-stuck {
	box-shadow: none;
}

.rd-navbar.rd-navbar-fixed+.rd-navbar.rd-navbar--is-clone,
.rd-navbar.rd-navbar-sidebar+.rd-navbar.rd-navbar--is-clone {
	display: none;
}

.rd-navbar.rd-navbar--is-stuck.rd-navbar--loading {
	visibility: hidden;
	transform: translateY(-100%);
}


/** Navbar components*/

.rd-navbar {
	display: none;
	background: #fff;
	box-shadow: none;
}

.rd-navbar-toggle {
	display: inline-block;
	position: relative;
	width: 48px;
	height: 48px;
	line-height: 48px;
	cursor: pointer;
	color: #fff;
	background-color: transparent;
	border: none;
	display: none;
}

.rd-navbar-toggle span {
	position: relative;
	display: block;
	margin: auto;
	transition: .3s all ease;
}

.rd-navbar-toggle span:after,
.rd-navbar-toggle span:before {
	content: "";
	position: absolute;
	left: 0;
	top: -8px;
	transition: .3s all ease;
}

.rd-navbar-toggle span:after {
	top: 8px;
}

.rd-navbar-toggle span:after,
.rd-navbar-toggle span:before,
.rd-navbar-toggle span {
	width: 24px;
	height: 4px;
	background-color: #fff;
	backface-visibility: hidden;
	border-radius: 2px;
}

.rd-navbar-toggle span {
	transform: rotate(180deg);
}

.rd-navbar-toggle span:before,
.rd-navbar-toggle span:after {
	transform-origin: 1.71429px center;
}

.rd-navbar-toggle.active span {
	transform: rotate(360deg);
}

.rd-navbar-toggle.active span:before,
.rd-navbar-toggle.active span:after {
	top: 0;
	width: 15px;
}

.rd-navbar-toggle.active span:before {
	-webkit-transform: rotate3d(0, 0, 1, -40deg);
	transform: rotate3d(0, 0, 1, -40deg);
}

.rd-navbar-toggle.active span:after {
	-webkit-transform: rotate3d(0, 0, 1, 40deg);
	transform: rotate3d(0, 0, 1, 40deg);
}

.rd-navbar-toggle:focus {
	outline: none;
}

.rd-navbar-brand {
	flex-grow: 1;
	flex-shrink: 0;
}

.rd-navbar-brand .brand-name {
	color: #474747;
	font-size: 25px;
	line-height: 40px;
	font-weight: 700;
}

.rd-navbar-submenu-toggle {
	cursor: pointer;
}

.rd-navbar-submenu-toggle:hover {
	color: #cfa04f;
}

.rd-navbar-submenu-toggle:after {
	margin-left: 4px;
	content: '\f236';
	font-size: 16px;
	font-family: "Material Design Icons";
}

.rd-navbar-dropdown {
	display: none;
	box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.12);
}

.rd-navbar-search-toggle {
	cursor: pointer;
	display: inline-block;
	font: 400 18px/36px "FontAwesome";
}

.rd-navbar-search-toggle,
.rd-navbar-search-toggle:before,
.rd-navbar-search-toggle:after {
	text-align: center;
	width: 36px;
	height: 36px;
}

.rd-navbar-search-toggle:before,
.rd-navbar-search-toggle:after {
	position: absolute;
	left: 0;
	top: 0;
	font-family: FontAwesome;
	transition: .3s all ease;
	width: 48px;
	height: 100%;
	line-height: 48px;
}

.rd-navbar-search-toggle:before {
	content: '\f002';
	transform: scale(1) rotate(0deg);
}

.rd-navbar-search-toggle:after {
	content: '\f00d';
	transform: scale(0) rotate(-90deg);
}

.rd-navbar-search-toggle.active:before {
	transform: scale(0) rotate(90deg);
}

.rd-navbar-search-toggle.active:after {
	transform: scale(1) rotate(0deg);
}

.rd-navbar-fixed .rd-navbar-search-toggle,
.rd-navbar-fixed .rd-navbar-search-toggle:before {
	width: 48px;
	line-height: 48px;
}

.rd-navbar-search-form-submit {
	display: inline-block;
	position: relative;
	width: 48px;
	height: 48px;
	line-height: 48px;
	cursor: pointer;
	color: #141414;
	text-align: center;
	font-size: 24px;
}

.rd-navbar-search-form-submit:before {
	content: "\f002";
	font-weight: 400;
	font-family: "FontAwesome";
}

.rd-navbar-search-form-submit.active {
	transform: scale(0.7);
}

.rd-navbar-live-search-results {
	display: none;
	position: absolute;
	left: 4px;
	right: 4px;
	padding: 16px 8px 8px;
	top: 100%;
	font-size: 16px;
	line-height: 34px;
	color: #333;
	background: #FFF;
	box-shadow: none;
	opacity: 0;
	visibility: hidden;
	text-align: left;
	z-index: 998;
}

.rd-navbar-live-search-results .search-quick-result {
	padding-left: 8px;
	font-size: 14px;
	line-height: 30px;
	color: #757575;
}

.rd-navbar-live-search-results .search_list {
	margin-top: 4px;
	font-size: 16px;
	line-height: 30px;
}

.rd-navbar-live-search-results .search_list li+li {
	margin-top: 2px;
}

.rd-navbar-live-search-results .search_list .search_list li+li:last-child {
	margin-top: 8px;
	border-top: 1px solid #EBEBEB;
	padding-top: 7px;
}

.rd-navbar-live-search-results .search_link {
	display: block;
	padding: 8px;
	color: #757575;
	border-radius: 2px;
}

.rd-navbar-live-search-results .search_link:hover {
	background: #F7F7F7;
}

.rd-navbar-live-search-results .search_link p {
	margin-top: 0;
	font-size: 14px;
	display: none;
}

.rd-navbar-live-search-results .search_title {
	color: #212121;
	font-weight: 400;
}

.rd-navbar-live-search-results .search_submit {
	display: block;
	text-align: center;
	padding: 8px;
	font-weight: 700;
	color: #cfa04f;
	text-transform: uppercase;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
}

.rd-navbar-live-search-results .search_submit:hover {
	background: #F7F7F7;
}

.rd-navbar-live-search-results.active {
	    visibility: visible;
    opacity: 1;
    display: block;
    background: #fff;
    z-index: 99;
}

@media (min-width: 1200px) {
	.rd-navbar-live-search-results .search_link p {
		display: block;
	}
}

.rd-navbar-live-search-results {
	transform: translateY(-100%);
}

.rd-navbar-live-search-results.active {
	transform: translateY(0);
}

.rd-navbar-shop {
	display: inline-block;
	position: relative;
}

.rd-navbar-shop:focus {
	outline: 0;
	color: #cfa04f;
}

.rd-navbar-shop-toggle {
	display: inline-block;
}

.rd-navbar-shop-panel {
	position: absolute;
	right: 0;
	top: calc(100% + 30px);
	z-index: 5;
	height: calc(100vh - 66px);
	overflow: auto;
	min-width: 270px;
	padding: 20px;
	box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.12);
	background-color: #fff;
	transition: .15s ease-out;
	opacity: 0;
	visibility: hidden;
}

@media (min-height: 450px) {
	.rd-navbar-shop-panel {
		height: auto;
	}
}

.rd-navbar-shop-panel h4 {
	margin-bottom: 10px;
}

.rd-navbar-shop-panel h4+.btn {
	margin-top: 14px;
}

.rd-navbar-shop-product {
	padding-right: 30px;
	position: relative;
}


/***Ankit 30-4**/

.features-list h3 {
	margin: 8px 0;
	text-transform: uppercase;
	font-size: 0.8rem;
}

.rd-navbar-shop-product-delete {
	position: absolute;
	right: 0;
	top: 0;
	font-size: 18px;
	color: #cfa04f;
	transition: .3s;
}

.rd-navbar-shop-product-delete:hover {
	color: #141414;
}

.rd-navbar-shop .label {
	margin-left: 6px;
}

.rd-navbar-shop.active .rd-navbar-shop-panel,.rd-navbar-searc.active .rd-navbar-searc-panel {
	opacity: 1;
	visibility: visible;
	top: calc(100% + 10px);
}

.rd-navbar-toppanel {
	border-bottom: 1px solid #e8e8e8;
}

.rd-navbar-toppanel-inner {
	display: flex;
	justify-content: space-between;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 15px;
	padding-right: 15px;
}

.rd-navbar-toppanel .rd-navbar-toppanel-wrapper {
	display: flex;
	align-items: center;
}

.rd-navbar-toppanel .rd-navbar-toppanel-submenu {
	position: relative;
	height: 50px;
}

.rd-navbar-toppanel .rd-navbar-toppanel-submenu-toggle {
	position: relative;
	display: inline-block;
	height: 50px;
	width: 16px;
}

.rd-navbar-toppanel .rd-navbar-toppanel-submenu-toggle:before,
.rd-navbar-toppanel .rd-navbar-toppanel-submenu-toggle:after {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	font-family: "Material Design Icons";
	color: #141414;
	font-size: 18px;
}

.rd-navbar-toppanel .rd-navbar-toppanel-submenu-toggle:before {
	content: "\f44e";
	opacity: 1;
}

.rd-navbar-toppanel .rd-navbar-toppanel-submenu-toggle:after {
	content: "\f48f";
	opacity: 0;
}

.rd-navbar-toppanel .rd-navbar-toppanel-submenu ul {
	position: absolute;
	top: 110%;
	left: 0;
	width: 194px;
	z-index: 5;
	opacity: 0;
	visibility: hidden;
	background-color: #f5f5f7;
	transition: .3s;
	text-align: left;
}

.rd-navbar-toppanel .rd-navbar-toppanel-submenu ul>li>a:hover {
	color: #cfa04f;
}

.rd-navbar-toppanel .rd-navbar-toppanel-submenu ul>li>a {
	display: inline-block;
	padding: 10px 21px;
	color: #141414;
}

.rd-navbar-toppanel .rd-navbar-toppanel-submenu ul>li+li {
	border-top: 1px dotted #e5e5e8;
}

.rd-navbar-toppanel .rd-navbar-toppanel-submenu.active .rd-navbar-toppanel-submenu-toggle:before {
	opacity: 0;
}

.rd-navbar-toppanel .rd-navbar-toppanel-submenu.active .rd-navbar-toppanel-submenu-toggle:after {
	opacity: 1;
}

.rd-navbar-toppanel .rd-navbar-toppanel-submenu.active ul {
	top: 100%;
	opacity: 1;
	visibility: visible;
}

.rd-navbar-currency,
.rd-navbar-lang {
	position: relative;
}

.rd-navbar-currency>[data-rd-navbar-toggle],
.rd-navbar-lang>[data-rd-navbar-toggle] {
	height: 50px;
	padding: 0 16px;
	vertical-align: middle;
	display: table-cell;
	border-right: 1px solid #e8e8e8;
	color: #000;
}

.rd-navbar-currency>[data-rd-navbar-toggle]:hover,
.rd-navbar-lang>[data-rd-navbar-toggle]:hover {
	color: #cfa04f;
}

.rd-navbar-currency>[data-rd-navbar-toggle]:after,
.rd-navbar-lang>[data-rd-navbar-toggle]:after {
	margin-left: 10px;
	content: '\f236';
	font-size: 14px;
	font-family: "Material Design Icons";
}

.rd-navbar-currency>ul,
.rd-navbar-lang>ul {
	position: absolute;
	top: 110%;
	z-index: 9;
	right: 0;
	width: 100%;
	opacity: 0;
	background-color: #f5f5f7;
	visibility: hidden;
	transition: .15s ease-out;
}

.rd-navbar-currency>ul>li>a,
.rd-navbar-lang>ul>li>a {
	width: 100%;
	display: inline-block;
	padding: 10px 20px;
	color: #141414;
}

.rd-navbar-currency>ul>li>a:hover,
.rd-navbar-lang>ul>li>a:hover {
	color: #cfa04f;
}

.rd-navbar-currency>ul>li+li,
.rd-navbar-lang>ul>li+li {
	border-top: 1px dotted #e5e5e8;
}

.rd-navbar-currency.active>ul,
.rd-navbar-lang.active>ul {
	opacity: 1;
	visibility: visible;
	top: 100%;
}


/** @subsection   Hybrid  Styles*/

.rd-navbar-static .rd-navbar-search-form {
	border: 1px solid #e8e8e8;
}

.rd-navbar-static .rd-navbar-search-form,
.rd-navbar-sidebar .rd-navbar-search-form,
.rd-navbar-fullwidth .rd-navbar-search-form {
	display: flex;
	width: 210px;
	border-radius: 10px;
	margin-left: 16px;
	border-right: 1px solid #e8e8e8;
	border-left: 1px solid #e8e8e8;
}

.rd-navbar-static .rd-navbar-search-form-input input,
.rd-navbar-sidebar .rd-navbar-search-form-input input,
.rd-navbar-fullwidth .rd-navbar-search-form-input input {
	height: 50px;
	width: 100%;
	padding: 10px 10px 10px 18px;
	border: none;
	font-size: 14px;
	line-height: 1.2;
	font-weight: 300;
	color: #888888;
	background-color: transparent;
}

.rd-navbar-static .rd-navbar-search-form-input input:focus,
.rd-navbar-sidebar .rd-navbar-search-form-input input:focus,
.rd-navbar-fullwidth .rd-navbar-search-form-input input:focus {
	outline: none;
}

.rd-navbar-static,
.rd-navbar-fullwidth {
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.09);
}

.rd-navbar-static:after,
.rd-navbar-fullwidth:after {
	content: '';
	background: #fff;
}

.rd-navbar-static .rd-navbar-brand,
.rd-navbar-static .rd-navbar-nav>li>a,
.rd-navbar-static .rd-navbar-search-toggle,
.rd-navbar-fullwidth .rd-navbar-brand,
.rd-navbar-fullwidth .rd-navbar-nav>li>a,
.rd-navbar-fullwidth .rd-navbar-search-toggle {
	position: relative;
	z-index: 2;
}

.rd-navbar-static .rd-navbar-search-toggle,
.rd-navbar-fullwidth .rd-navbar-search-toggle {
	display: none;
}

.rd-navbar-static .rd-navbar-nav>li>a,
.rd-navbar-fullwidth .rd-navbar-nav>li>a {
	position: relative;
	display: block;
	padding: 10px 0;
	color: #fff;
	text-transform: uppercase;
	line-height: 1.2;
	letter-spacing: 0.04em;
}

.rd-navbar-static .rd-navbar-nav>li.focus>a:after,
.rd-navbar-static .rd-navbar-nav>li>a:hover:after,
.rd-navbar-static .rd-navbar-nav>li.active>a:after,
.rd-navbar-fullwidth .rd-navbar-nav>li.focus>a:after,
.rd-navbar-fullwidth .rd-navbar-nav>li>a:hover:after,
.rd-navbar-fullwidth .rd-navbar-nav>li.active>a:after {
	left: 0;
	width: 100%;
}

.rd-navbar-static .rd-navbar-nav .rd-navbar-submenu .rd-navbar-submenu>a,
.rd-navbar-fullwidth .rd-navbar-nav .rd-navbar-submenu .rd-navbar-submenu>a {
	position: relative;
}

.rd-navbar-static .rd-navbar-nav .rd-navbar-submenu .rd-navbar-submenu .rd-navbar-submenu-toggle:after,
.rd-navbar-fullwidth .rd-navbar-nav .rd-navbar-submenu .rd-navbar-submenu .rd-navbar-submenu-toggle:after {
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	content: "\f238";
	font-family: "Material Design Icons";
	font-size: 16px;
	color: #141414;
}

.rd-navbar-static .rd-navbar-nav>.rd-navbar-submenu>ul,
.rd-navbar-fullwidth .rd-navbar-nav>.rd-navbar-submenu>ul {
	box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.12);
}

.rd-navbar-static .rd-navbar-nav>.rd-navbar-submenu li,
.rd-navbar-fullwidth .rd-navbar-nav>.rd-navbar-submenu li {
	font-size: 14px;
	line-height: 30px;
}

.rd-navbar-static .rd-navbar-nav>.rd-navbar-submenu>.rd-navbar-dropdown,
.rd-navbar-static .rd-navbar-nav>.rd-navbar-submenu>.rd-navbar-megamenu,
.rd-navbar-fullwidth .rd-navbar-nav>.rd-navbar-submenu>.rd-navbar-dropdown,
.rd-navbar-fullwidth .rd-navbar-nav>.rd-navbar-submenu>.rd-navbar-megamenu {
	opacity: 0;
	visibility: hidden;
	transform: translateY(30px);
}

.rd-navbar-static .rd-navbar-nav>.rd-navbar-submenu.focus>.rd-navbar-dropdown,
.rd-navbar-static .rd-navbar-nav>.rd-navbar-submenu.focus>.rd-navbar-megamenu,
.rd-navbar-fullwidth .rd-navbar-nav>.rd-navbar-submenu.focus>.rd-navbar-dropdown,
.rd-navbar-fullwidth .rd-navbar-nav>.rd-navbar-submenu.focus>.rd-navbar-megamenu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.rd-navbar-static .rd-navbar-nav>.rd-navbar-submenu .rd-navbar-submenu.focus>.rd-navbar-dropdown,
.rd-navbar-fullwidth .rd-navbar-nav>.rd-navbar-submenu .rd-navbar-submenu.focus>.rd-navbar-dropdown {
	display: block;
}

.rd-navbar-static .rd-navbar-inner,
.rd-navbar-fullwidth .rd-navbar-inner {
	position: relative;
	max-width: 1200px;
	padding-left: 15px;
	padding-right: 15px;
	margin-left: auto;
	margin-right: auto;
}

.rd-navbar-static .rd-navbar-nav>li>.rd-navbar-dropdown,
.rd-navbar-fullwidth .rd-navbar-nav>li>.rd-navbar-dropdown {
	display: block;
	position: absolute;
	text-align: left;
	margin-top: 13px;
	left: 50%;
	margin-left: -97px;
	width: 194px;
	background: #f5f5f7;
	z-index: 5;
}

.rd-navbar-static .rd-navbar-nav>li>.rd-navbar-dropdown>li+li,
.rd-navbar-fullwidth .rd-navbar-nav>li>.rd-navbar-dropdown>li+li {
	border-top: 1px dotted #d5d5d9;
}

.rd-navbar-static .rd-navbar-dropdown,
.rd-navbar-fullwidth .rd-navbar-dropdown {
	background: #f5f5f7;
}

.rd-navbar-static .rd-navbar-dropdown>li+li,
.rd-navbar-fullwidth .rd-navbar-dropdown>li+li {
	border-top: 1px dotted #d5d5d9;
}

.rd-navbar-static .rd-navbar-dropdown>li>a,
.rd-navbar-fullwidth .rd-navbar-dropdown>li>a {
	display: block;
	padding: 2px 20px;
	color: #141414;
	background: transparent;
}

.rd-navbar-static .rd-navbar-dropdown>li>a:hover,
.rd-navbar-fullwidth .rd-navbar-dropdown>li>a:hover {
	color: #cfa04f;
	background: transparent;
}

.rd-navbar-static .rd-navbar-dropdown>li.focus>a,
.rd-navbar-fullwidth .rd-navbar-dropdown>li.focus>a {
	color: #cfa04f;
	background: transparent;
}

.rd-navbar-static .rd-navbar-megamenu,
.rd-navbar-fullwidth .rd-navbar-megamenu {
	display: table;
	position: absolute;
	text-align: left;
	right: 15px;
	border-spacing: 31px 25px;
	table-layout: fixed;
	width: 55%;
	margin-top: 10px;
	max-width: 1200px;
	background: #363636;
	z-index: 4;
}

.rd-navbar-static .rd-navbar-megamenu>li,
.rd-navbar-fullwidth .rd-navbar-megamenu>li {
	position: relative;
	display: table-cell;
}

.rd-navbar-static .rd-navbar-megamenu>li>p,
.rd-navbar-fullwidth .rd-navbar-megamenu>li>p {
	font-weight: 400;
	text-transform: uppercase;
	color: #fff;
}

.rd-navbar-static .rd-navbar-megamenu>li>ul,
.rd-navbar-fullwidth .rd-navbar-megamenu>li>ul {
	padding: 8px 9px;
}

.rd-navbar-static .rd-navbar-megamenu>li>ul li+li,
.rd-navbar-fullwidth .rd-navbar-megamenu>li>ul li+li {
	margin-top: 5px;
}

.rd-navbar-static .rd-navbar-megamenu>li>ul a,
.rd-navbar-fullwidth .rd-navbar-megamenu>li>ul a {
	display: inline-block;
	color: #fff;
	background: transparent;
}

.rd-navbar-static .rd-navbar-megamenu>li>ul a:hover,
.rd-navbar-fullwidth .rd-navbar-megamenu>li>ul a:hover {
	color: #cfa04f;
	background: transparent;
}

.rd-navbar-static .rd-navbar-megamenu>li+li,
.rd-navbar-fullwidth .rd-navbar-megamenu>li+li {
	padding-left: 10px;
}

.rd-navbar-static .rd-navbar-megamenu>li+li:before,
.rd-navbar-fullwidth .rd-navbar-megamenu>li+li:before {
	content: '';
	position: absolute;
	top: 30px;
	bottom: 30px;
	width: 1px;
	right: 100%;
	margin-right: 17px;
	background: #494949;
}

.rd-navbar-static.rd-navbar--is-clone,
.rd-navbar-fullwidth.rd-navbar--is-clone {
	display: none;
	transform: translateY(-110%);
}

.rd-navbar-static.rd-navbar--is-clone.rd-navbar--is-stuck,
.rd-navbar-fullwidth.rd-navbar--is-clone.rd-navbar--is-stuck {
	transform: translateY(0);
}

.rd-navbar-static .rd-navbar-search-form .form-wrap,
.rd-navbar-fullwidth .rd-navbar-search-form .form-wrap {
	margin-bottom: 0;
}

.rd-navbar-static .rd-navbar-search-form:after,
.rd-navbar-fullwidth .rd-navbar-search-form:after {
	left: 100%;
}

.rd-navbar-static .rd-navbar-search-form-submit,
.rd-navbar-fullwidth .rd-navbar-search-form-submit {
	position: relative;
	background-color: transparent;
	width: auto;
	height: auto;
	line-height: inherit;
	font-size: 16px;
	border: none;
}

.rd-navbar-static .rd-navbar-search-form-submit:focus,
.rd-navbar-fullwidth .rd-navbar-search-form-submit:focus {
	outline: none;
}

.rd-navbar-static .rd-navbar-search-form-submit:hover,
.rd-navbar-fullwidth .rd-navbar-search-form-submit:hover {
	color: #cfa04f;
}

.rd-navbar-static .rd-navbar-search-form-input,
.rd-navbar-fullwidth .rd-navbar-search-form-input {
	position: relative;
	display: inline-block;
	margin: 0;
}

.rd-navbar-static .rd-navbar-search-toggle,
.rd-navbar-fullwidth .rd-navbar-search-toggle {
	position: absolute;
	right: 50px;
	top: 50%;
	transform: translateY(-50%);
	color: #fff;
	background-color: transparent;
	border: none;
}

.rd-navbar-static .rd-navbar-search-toggle:focus,
.rd-navbar-fullwidth .rd-navbar-search-toggle:focus {
	outline: 0;
}

.rd-navbar-static .rd-navbar-search-toggle:hover,
.rd-navbar-fullwidth .rd-navbar-search-toggle:hover {
	color: #cfa04f;
}

.rd-navbar-static .rd-navbar-search.active .rd-navbar-search-form,
.rd-navbar-fullwidth .rd-navbar-search.active .rd-navbar-search-form {
	visibility: visible;
	transform: rotateX(0deg);
}

.rd-navbar-static .rd-navbar-live-search-results,
.rd-navbar-fullwidth .rd-navbar-live-search-results {
	top: calc(100% + 0px);
	z-index: 0;
}

.rd-navbar-static.rd-navbar--is-stuck,
.rd-navbar-static.rd-navbar--is-clone,
.rd-navbar-fullwidth.rd-navbar--is-stuck,
.rd-navbar-fullwidth.rd-navbar--is-clone {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	z-index: 999;
	background: #fff;
}

.rd-navbar-static.rd-navbar--is-stuck .rd-navbar-collapse,
.rd-navbar-static.rd-navbar--is-stuck .rd-navbar-toppanel,
.rd-navbar-static.rd-navbar--is-clone .rd-navbar-collapse,
.rd-navbar-static.rd-navbar--is-clone .rd-navbar-toppanel,
.rd-navbar-fullwidth.rd-navbar--is-stuck .rd-navbar-collapse,
.rd-navbar-fullwidth.rd-navbar--is-stuck .rd-navbar-toppanel,
.rd-navbar-fullwidth.rd-navbar--is-clone .rd-navbar-collapse,
.rd-navbar-fullwidth.rd-navbar--is-clone .rd-navbar-toppanel {
	display: none;
}

.rd-navbar-static.rd-navbar--is-stuck .rd-navbar-panel,
.rd-navbar-static.rd-navbar--is-clone .rd-navbar-panel,
.rd-navbar-fullwidth.rd-navbar--is-stuck .rd-navbar-panel,
.rd-navbar-fullwidth.rd-navbar--is-clone .rd-navbar-panel {
	padding: 11px 0;
}

.rd-navbar-static .rd-navbar-dropdown,
.rd-navbar-static .rd-navbar-megamenu,
.rd-navbar-fullwidth .rd-navbar-dropdown,
.rd-navbar-fullwidth .rd-navbar-megamenu {
	position: absolute;
	transform: translateY(30px);
	text-align: left;
	visibility: hidden;
	opacity: 0;
}

.rd-navbar-static .rd-navbar-dropdown li>a,
.rd-navbar-static .rd-navbar-megamenu li>a,
.rd-navbar-fullwidth .rd-navbar-dropdown li>a,
.rd-navbar-fullwidth .rd-navbar-megamenu li>a {
	display: block;
	font-size: 14px;
	line-height: 24px;
	/*padding: 8px 14px;*/
	padding: 8px 8px;
}

.rd-navbar-static .rd-navbar-dropdown,
.rd-navbar-fullwidth .rd-navbar-dropdown {
	width: 194px;
}

.rd-navbar-static .rd-navbar-megamenu,
.rd-navbar-fullwidth .rd-navbar-megamenu {
	margin-top: 10px;
	left: 0;
	right: 0;
	display: table;
	table-layout: fixed;
	width: 100%;
	padding: 16px 8px;
	background: #141414;
}

.rd-navbar-static .rd-navbar-megamenu>li,
.rd-navbar-fullwidth .rd-navbar-megamenu>li {
	display: table-cell;
}

.rd-navbar-static .rd-navbar-nav,
.rd-navbar-fullwidth .rd-navbar-nav {
	display: block;
}

.rd-navbar-static .rd-navbar-nav li.rd-navbar--has-dropdown,
.rd-navbar-fullwidth .rd-navbar-nav li.rd-navbar--has-dropdown {
	position: relative;
}

.rd-navbar-static .rd-navbar-nav li.focus>.rd-navbar-dropdown,
.rd-navbar-static .rd-navbar-nav li.focus>.rd-navbar-megamenu,
.rd-navbar-static .rd-navbar-nav li.opened>.rd-navbar-dropdown,
.rd-navbar-static .rd-navbar-nav li.opened>.rd-navbar-megamenu,
.rd-navbar-fullwidth .rd-navbar-nav li.focus>.rd-navbar-dropdown,
.rd-navbar-fullwidth .rd-navbar-nav li.focus>.rd-navbar-megamenu,
.rd-navbar-fullwidth .rd-navbar-nav li.opened>.rd-navbar-dropdown,
.rd-navbar-fullwidth .rd-navbar-nav li.opened>.rd-navbar-megamenu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.rd-navbar-static .rd-navbar-nav>li,
.rd-navbar-fullwidth .rd-navbar-nav>li {
	display: inline-block;
}

.rd-navbar-static .rd-navbar-nav>li>.rd-navbar-dropdown,
.rd-navbar-static .rd-navbar-nav>li>.rd-navbar-megamenu,
.rd-navbar-fullwidth .rd-navbar-nav>li>.rd-navbar-dropdown,
.rd-navbar-fullwidth .rd-navbar-nav>li>.rd-navbar-megamenu {
	top: 100%;
	z-index: 5;
}

.rd-navbar-static .rd-navbar-nav>li>.rd-navbar-dropdown,
.rd-navbar-fullwidth .rd-navbar-nav>li>.rd-navbar-dropdown {
	left: 50%;
	margin-top: 20px;
	margin-left: -40px;
}

.rd-navbar-static .rd-navbar-nav>li>.rd-navbar-dropdown .rd-navbar-dropdown,
.rd-navbar-fullwidth .rd-navbar-nav>li>.rd-navbar-dropdown .rd-navbar-dropdown {
	left: 100%;
	top: 0;
	z-index: 2;
}

.rd-navbar-static .rd-navbar-nav>li>a,
.rd-navbar-fullwidth .rd-navbar-nav>li>a {
	display: inline-block;
	font-weight: 500;
	font-size: 14px;
	line-height: 20px;
	color: #141414;
}

.rd-navbar-static .rd-navbar-nav>li.active>a,
.rd-navbar-static .rd-navbar-nav>li.opened>a,
.rd-navbar-static .rd-navbar-nav>li.focus>a,
.rd-navbar-static .rd-navbar-nav>li>a:hover,
.rd-navbar-fullwidth .rd-navbar-nav>li.active>a,
.rd-navbar-fullwidth .rd-navbar-nav>li.opened>a,
.rd-navbar-fullwidth .rd-navbar-nav>li.focus>a,
.rd-navbar-fullwidth .rd-navbar-nav>li>a:hover {
	color: #cfa04f;
}

.rd-navbar-static .rd-navbar--has-dropdown,
.rd-navbar-fullwidth .rd-navbar--has-dropdown {
	position: relative;
}

.rd-navbar-static.rd-navbar--is-clone,
.rd-navbar-fullwidth.rd-navbar--is-clone {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background-color: #fff;
	box-shadow: 0 0 24px -1px rgba(0, 0, 0, 0.2);
}

.rd-navbar-static.rd-navbar--is-clone .rd-navbar-nav>li>a,
.rd-navbar-static.rd-navbar--is-clone .rd-navbar-search-toggle,
.rd-navbar-static.rd-navbar--is-clone .rd-navbar-shop,
.rd-navbar-fullwidth.rd-navbar--is-clone .rd-navbar-nav>li>a,
.rd-navbar-fullwidth.rd-navbar--is-clone .rd-navbar-search-toggle,
.rd-navbar-fullwidth.rd-navbar--is-clone .rd-navbar-shop {
	color: #363636;
}

.rd-navbar-fixed .rd-navbar-collapse-toggle,
.rd-navbar-sidebar .rd-navbar-collapse-toggle {
	display: inline-block;
	z-index: 1;
}

.rd-navbar-fixed .rd-navbar-dropdown,
.rd-navbar-sidebar .rd-navbar-dropdown {
	display: block;
}

.rd-navbar-fixed .rd-navbar-collapse-items,
.rd-navbar-sidebar .rd-navbar-collapse-items {
	position: absolute;
	width: 260px;
	padding: 25px 15px;
	box-shadow: none;
	color: #141414;
	background: #fff;
	font-size: 16px;
	line-height: 34px;
}

.rd-navbar-fixed .rd-navbar-collapse-items li>*,
.rd-navbar-sidebar .rd-navbar-collapse-items li>* {
	vertical-align: middle;
}

.rd-navbar-fixed .rd-navbar-collapse-items li+li,
.rd-navbar-sidebar .rd-navbar-collapse-items li+li {
	margin-top: 10px;
}

.rd-navbar-fixed .rd-navbar-collapse-items .icon,
.rd-navbar-fixed .rd-navbar-collapse-items a,
.rd-navbar-sidebar .rd-navbar-collapse-items .icon,
.rd-navbar-sidebar .rd-navbar-collapse-items a {
	display: inline-block;
	font-size: 16px;
	line-height: 30px;
}

.rd-navbar-fixed .rd-navbar-collapse-items .icon,
.rd-navbar-fixed .rd-navbar-collapse-items a[class*="fa"]:before,
.rd-navbar-sidebar .rd-navbar-collapse-items .icon,
.rd-navbar-sidebar .rd-navbar-collapse-items a[class*="fa"]:before {
	display: inline-block;
	width: 30px;
	height: 30px;
	padding-right: 5px;
}

.rd-navbar-fixed .rd-navbar-nav,
.rd-navbar-sidebar {
	position: fixed;
	width: 270px;
	height: 100%;
	left: 0;
	top: 0;
	overflow-y: auto;
	overflow-x: hidden;
	-webkit-overflow-scrolling: touch;
	font-size: 16px;
	line-height: 34px;
	color: #141414;
	background: #fff;
	box-shadow: 0 0 11px 2px rgba(0, 0, 0, 0.17);
	z-index: 998;
	padding: 120px 0;
}

.rd-navbar-fixed .rd-navbar-nav:before,
.rd-navbar-fixed .rd-navbar-nav:after,
.rd-navbar-sidebar:before,
.rd-navbar-sidebar:after {
	content: '';
	display: block;
	height: 56px;
}

.rd-navbar-fixed .rd-navbar-nav::-webkit-scrollbar,
.rd-navbar-sidebar::-webkit-scrollbar {
	width: 4px;
}

.rd-navbar-fixed .rd-navbar-nav::-webkit-scrollbar-thumb,
.rd-navbar-sidebar::-webkit-scrollbar-thumb {
	background: white;
	border: none;
	border-radius: 0;
	opacity: .2;
}

.rd-navbar-fixed .rd-navbar-nav::-webkit-scrollbar-track,
.rd-navbar-sidebar::-webkit-scrollbar-track {
	background: #fff;
	border: none;
	border-radius: 0;
}

.rd-navbar-fixed .rd-navbar-nav p,
.rd-navbar-sidebar .rd-navbar-nav p {
	font-weight: 700;
	color: #363636;
	padding: 5px 40px 5px 15px;
}

.rd-navbar-fixed .rd-navbar-nav p>a,
.rd-navbar-sidebar .rd-navbar-nav p>a {
	display: block;
	color: #474747;
	margin: -5px -40px -5px -15px;
	font-weight: 400;
	padding: 5px 40px 5px 15px;
}

.rd-navbar-fixed .rd-navbar-nav p>a:hover,
.rd-navbar-sidebar .rd-navbar-nav p>a:hover {
	color: #FFF;
	background: #cfa04f;
	text-decoration: none;
}

.rd-navbar-fixed .rd-navbar-nav li,
.rd-navbar-sidebar .rd-navbar-nav li {
	position: relative;
}

.rd-navbar-fixed .rd-navbar-nav li li>a,
.rd-navbar-sidebar .rd-navbar-nav li li>a {
	padding-left: 20px;
}

.rd-navbar-fixed .rd-navbar-nav li>a,
.rd-navbar-sidebar .rd-navbar-nav li>a {
	position: relative;
	display: block;
	padding: 5px 45px 5px 15px;
}

.rd-navbar-fixed .rd-navbar-nav li>a:first-letter,
.rd-navbar-sidebar .rd-navbar-nav li>a:first-letter {
	text-transform: uppercase;
}

.rd-navbar-fixed .rd-navbar-nav li.active>a,
.rd-navbar-sidebar .rd-navbar-nav li.active>a {
	color: #e5e4e3;
	background: #f2f2f2;
}

.rd-navbar-fixed .rd-navbar-nav li.focus>a,
.rd-navbar-fixed .rd-navbar-nav li>a:hover,
.rd-navbar-sidebar .rd-navbar-nav li.focus>a,
.rd-navbar-sidebar .rd-navbar-nav li>a:hover {
	color: #FFF;
	background: #cfa04f;
}

.rd-navbar-fixed .rd-navbar-nav li+li,
.rd-navbar-fixed .rd-navbar-nav li>img+a,
.rd-navbar-fixed .rd-navbar-nav li>a+a,
.rd-navbar-fixed .rd-navbar-nav li>a+ul,
.rd-navbar-sidebar .rd-navbar-nav li+li,
.rd-navbar-sidebar .rd-navbar-nav li>img+a,
.rd-navbar-sidebar .rd-navbar-nav li>a+a,
.rd-navbar-sidebar .rd-navbar-nav li>a+ul {
	margin-top: 4px;
}

.rd-navbar-fixed .rd-navbar-nav .rd-navbar-dropdown>li>a,
.rd-navbar-sidebar .rd-navbar-nav .rd-navbar-dropdown>li>a {
	padding-left: 20px;
}

.rd-navbar-fixed .rd-navbar-nav .rd-navbar-dropdown ul>li>a,
.rd-navbar-sidebar .rd-navbar-nav .rd-navbar-dropdown ul>li>a {
	padding-left: 25px;
}

.rd-navbar-fixed .rd-navbar-nav .rd-navbar-submenu.focus .rd-navbar-submenu-toggle:after,
.rd-navbar-sidebar .rd-navbar-nav .rd-navbar-submenu.focus .rd-navbar-submenu-toggle:after {
	color: #cfa04f;
}

.rd-navbar-fixed .rd-navbar-search-form-submit,
.rd-navbar-sidebar .rd-navbar-search-form-submit {
	transform: scale(0.7);
}


/** Static Layout*/

.rd-navbar-static {
	display: block;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.09);
}

.rd-navbar-static .rd-navbar-panel {
	padding: 15px 0;
}

.rd-navbar-static .rd-navbar-elements-wrap {
	display: table-cell;
	vertical-align: middle;
	width: 100%;
}

.rd-navbar-static .rd-navbar-brand {
	display: table-cell;
	vertical-align: middle;
}

.rd-navbar-static .rd-navbar-brand>* {
	display: inline-block;
	vertical-align: middle;
}

.rd-navbar-static .rd-navbar-brand>img {
	margin-right: 10px;
}

.rd-navbar-static .rd-navbar-brand>a {
	font-size: 36px;
	line-height: 48px;
}

.rd-navbar-static .rd-navbar-brand>a span {
	display: none;
}

.rd-navbar-static .rd-navbar-collapse {
	display: block;
	float: right;
	margin-left: -15px;
	margin-top: 23px;
}

.rd-navbar-static .rd-navbar-collapse li {
	display: inline-block;
	margin-left: 15px;
}

.rd-navbar-static .rd-navbar-collapse li a:hover {
	text-decoration: underline;
}

.rd-navbar-static .rd-navbar-panel {
	display: flex;
	align-items: center;
}

.rd-navbar-static .rd-navbar-toggle {
	position: fixed;
	z-index: 17;
	top: 4px;
	left: 4px;
}

.callus {
	font-size: 1.3rem;
	font-weight: 800;
	color: #cfa04f;
}

.forgotPass {
	font-size: 0.8rem;
}

.shadow-mask {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	bottom: 0;
	right: 0;
	/*background: #ffffff6e;*/
	background:transparent;
}

.rd-navbar-static *+.rd-navbar-shop {
	margin-left: 20px;
}

.rd-navbar-static .rd-navbar-shop .label {
	margin-left: 6px;
}

.rd-navbar-static .rd-navbar-nav {
	position: absolute;
	top: 50%;
	left: 45%;
	transform: translate(-50%, -50%);
	z-index: 5;
}

@media (min-width: 1200px) {
	.rd-navbar-static .rd-navbar-nav {
		left: 50%;
	}
}

.rd-navbar-static .rd-navbar-nav {
	margin-bottom: 0;
}

.rd-navbar-static .rd-navbar-nav>li {
	display: inline-block;
}

.rd-navbar-static .rd-navbar-nav>li+li {
	margin-left: 12px;
}

@media (min-width: 1200px) {
	.rd-navbar-static .rd-navbar-nav>li+li {
		margin-left: 29px;
	}
}

.rd-navbar-static .rd-navbar-static--visible {
	display: block;
}

.rd-navbar-static .rd-navbar-static--hidden {
	display: none;
}


/** Fullwidth Layout*/

.rd-navbar-fullwidth {
	display: block;
}

.rd-navbar-fullwidth .rd-navbar-panel {
	text-align: center;
	padding: 24px 0;
}

.rd-navbar-fullwidth .rd-navbar-brand {
	display: inline-block;
}

.rd-navbar-fullwidth .rd-navbar-elements-wrap {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	padding: 20px 15px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.rd-navbar-fullwidth .rd-navbar-nav-wrap {
	position: relative;
	padding-bottom: 8px;
}

.rd-navbar-fullwidth .rd-navbar-nav-wrap .rd-navbar-megamenu {
	left: 0;
	right: 0;
}

.rd-navbar-fullwidth .rd-navbar-search-toggle {
	right: 6%;
}

.rd-navbar-fullwidth .rd-navbar-nav>li {
	display: inline-block;
}

.rd-navbar-fullwidth .rd-navbar-nav>li+li {
	margin-left: 12px;
}

.rd-navbar-fullwidth .rd-navbar-nav>li>a {
	display: inline-block;
	text-align: center;
	padding: 10px;
}

.rd-navbar-fullwidth.rd-navbar--is-stuck .rd-navbar-nav-wrap {
	padding-top: 8px;
}

.rd-navbar-fullwidth.rd-navbar--is-stuck .rd-navbar-panel {
	display: none;
}

.rd-navbar-fullwidth .rd-navbar-fullwidth--visible {
	display: block;
}

.rd-navbar-fullwidth .rd-navbar-fullwidth--hidden {
	display: none;
}

.rd-navbar-fullwidth.rd-navbar-fullwidth-variant-1 .rd-navbar-panel {
	text-align: left;
}

.rd-navbar-fullwidth.rd-navbar-fullwidth-variant-1 .rd-navbar-nav {
	text-align: left;
}

.rd-navbar-fullwidth.rd-navbar-fullwidth-variant-1 .rd-navbar-elements-wrap {
	justify-content: flex-end;
}

.rd-navbar-fullwidth.rd-navbar-fullwidth-variant-1 .rd-navbar-elements-wrap .rd-navbar-shop {
	margin-left: 40px;
}


/** Fixed Layout*/

.rd-navbar-fixed {
	display: block;
}

.rd-navbar-fixed .rd-navbar-brand {
	position: relative;
	display: flex;
	justify-content: center;
}

.rd-navbar-fixed .rd-navbar-brand .brand-name {
	display: inline-block;
	font-size: 20px;
	line-height: 48px;
	color: #fff;
}

.rd-navbar-fixed .rd-navbar-brand .brand-name img {
	max-width: 120px;
}
span#count_cart {
    margin-top: -15px;
    margin-left: -5px;
}
@media (min-width: 576px) {
	.rd-navbar-fixed .rd-navbar-brand .brand-name img {
		max-width: none;
	}
	span#count_cart {
        margin-left: -3px;
        margin-top: -13px;
        padding: 1px 6px;
        font-size: 13px;
    }
}

.rd-navbar-fixed .rd-navbar-brand .brand-slogan {
	display: none;
}

.rd-navbar-fixed .rd-navbar-elements-wrap {
	width: 100%;
}

.rd-navbar-fixed .rd-navbar-elements-wrap .rd-navbar-socials {
	display: none !important;
}

.rd-navbar-fixed .rd-navbar-toppanel {
	border-bottom: 0;
}

.rd-navbar-fixed .rd-navbar-brand {
	display: block;
	text-align: left;
	position: fixed;
	top: 4px;
	left: 56px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 22px;
	line-height: 46px;
	height: 48px;
	z-index: 17;
}

.rd-navbar-fixed .rd-navbar-brand a {
	display: inline-block;
}

.rd-navbar-fixed .rd-navbar-toggle span:after,
.rd-navbar-fixed .rd-navbar-toggle span:before,
.rd-navbar-fixed .rd-navbar-toggle span {
	background-color: #141414;
}

.rd-navbar-fixed .rd-navbar-panel {
	display: flex;
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	padding: 4px;
	height: 56px;
	color: #141414;
	z-index: 999;
}

.rd-navbar-fixed .rd-navbar-panel:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	box-shadow: 0 0 13px -1px rgba(0, 0, 0, 0.17);
	background: #fff;
}

.rd-navbar-fixed .rd-navbar-toggle {
	display: inline-block;
}

.rd-navbar-fixed .rd-navbar-nav-wrap {
	position: fixed;
	top: -56px;
	left: 0;
	width: 232px;
	padding: 112px 0 56px;
	bottom: -56px;
	color: #fff;
	background: #fff;
	z-index: 15;
	transform: translateX(-120%);
}

.rd-navbar-fixed .rd-navbar-nav-wrap.active {
	transform: translateX(0);
}

.rd-navbar-fixed .rd-navbar-nav {
	display: block;
	height: 100%;
	overflow: auto;
	font-size: 16px;
	line-height: 26px;
	text-align: left;
}

.rd-navbar-fixed .rd-navbar-nav:before,
.rd-navbar-fixed .rd-navbar-nav:after {
	content: '';
	display: block;
	height: 8px;
}

.rd-navbar-fixed .rd-navbar-nav li>a {
	display: block;
	padding: 11px 56px 11px 16px;
	color: #141414;
}

.rd-navbar-fixed .rd-navbar-nav li.opened>a,
.rd-navbar-fixed .rd-navbar-nav li a:hover {
	background: white;
}

.rd-navbar-fixed .rd-navbar-nav li.active>a {
	color: #fff;
	background: #cfa04f;
}

.rd-navbar-fixed .rd-navbar-dropdown {
	box-shadow: none;
}

.rd-navbar-fixed .rd-navbar-dropdown,
.rd-navbar-fixed .rd-navbar-megamenu {
	display: none;
}

.rd-navbar-fixed .rd-navbar-submenu {
	position: relative;
}

.rd-navbar-fixed .rd-navbar-submenu li>a {
	padding-left: 32px;
}

.rd-navbar-fixed .rd-navbar-submenu .rd-navbar-dropdown li li>a,
.rd-navbar-fixed .rd-navbar-submenu .rd-navbar-megamenu ul li li>a {
	padding-left: 48px;
}

.rd-navbar-fixed .rd-navbar-submenu.opened>.rd-navbar-dropdown,
.rd-navbar-fixed .rd-navbar-submenu.opened>.rd-navbar-megamenu {
	display: block;
}

.rd-navbar-fixed .rd-navbar-search {
	display: block;
}

.rd-navbar-fixed .rd-navbar-search form button[type="submit"] {
	display: none;
}

.rd-navbar-fixed .rd-navbar-search.active .rd-navbar-search-form {
	pointer-events: all;
}

.rd-navbar-fixed .rd-navbar-search.active .rd-navbar-search-form-input {
	opacity: 1;
	visibility: visible;
}

.rd-navbar-fixed .rd-navbar-search-form,
.rd-navbar-fixed .rd-navbar-search-toggle {
	right: 94px;
	top: 9px;
}

.rd-navbar-fixed .rd-navbar-search-toggle {
	display: block;
	position: fixed;
	top: 4px;
	pointer-events: all;
	right: 39px;
	font-family: 'Material Icons';
	width: 48px;
	height: 48px;
	z-index: 18;
}

.rd-navbar-fixed .rd-navbar-search-form,
.rd-navbar-fixed .rd-navbar-search .rd-navbar-live-search-results {
	position: fixed;
	margin-right: 0;
	margin-left: auto;
	width: calc(100% - 106px);
	pointer-events: none;
}

.rd-navbar-fixed .rd-navbar-search .rd-navbar-live-search-results {
	top: 56px;
}

.rd-navbar-fixed .rd-navbar-search-form {
	z-index: 1000;
}

.rd-navbar-fixed .rd-navbar-search-form-input {
	visibility: hidden;
	opacity: 0;
	height: 40px !important;
	background: #EAEAEA;
	box-shadow: 0 0 10px 0 rgba(136, 136, 136, 0.7);
	transition: .3s all ease;
	z-index: 1;
	width: 100%;
	margin: 0;
}

.rd-navbar-fixed .rd-navbar-search-form-input input {
	display: block;
	width: 100%;
	padding: 0 20px;
	min-height: 40px;
	font-size: 16px;
	font-weight: 400;
	line-height: 34px;
	color: #141414;
	border: none;
	background: #fff;
}

.rd-navbar-fixed .rd-navbar-search-form-submit {
	position: absolute;
	top: 4px;
	right: 4px;
	opacity: 0;
	visibility: hidden;
	z-index: 9;
	background-color: transparent;
	border: none;
}

.rd-navbar-fixed .rd-navbar-search-form-submit:focus {
	outline: none;
}

.rd-navbar-fixed .rd-navbar-search.active .rd-navbar-search-form-input,
.rd-navbar-fixed .rd-navbar-search.active .rd-navbar-search-form-submit {
	opacity: 1;
	visibility: visible;
}

@media (min-width: 992px) {
	.rd-navbar-fixed .rd-navbar-search-form,
	.rd-navbar-fixed .rd-navbar-search .rd-navbar-live-search-results {
		max-width: 340px;
	}
	.rd-navbar-fixed .rd-navbar-search .rd-navbar-live-search-results {
		right: 4px;
	}
}

@media (min-width: 576px) {
	.rd-navbar-fixed .rd-navbar-search .rd-navbar-brand .brand-name {
		font-size: 24px;
	}
}

.rd-navbar-fixed .rd-navbar-nav li:hover>a,
.rd-navbar-fixed .rd-navbar-nav li:hover>a:hover,
.rd-navbar-fixed .rd-navbar-nav li.focus>a,
.rd-navbar-fixed .rd-navbar-nav li.focus>a:hover {
	color: #FFF;
	background: #cfa04f;
}

.rd-navbar-fixed .rd-navbar-nav li:hover>.rd-navbar-submenu-toggle:hover,
.rd-navbar-fixed .rd-navbar-nav li.focus>.rd-navbar-submenu-toggle:hover {
	cursor: pointer;
}

.rd-navbar-fixed .rd-navbar-nav li .rd-navbar-dropdown,
.rd-navbar-fixed .rd-navbar-nav li .rd-navbar-megamenu {
	transition: opacity 0.3s, height 0.4s ease;
	opacity: 0;
	height: 0;
	overflow: hidden;
}

.rd-navbar-fixed .rd-navbar-nav li.opened>.rd-navbar-dropdown,
.rd-navbar-fixed .rd-navbar-nav li.opened>.rd-navbar-megamenu {
	opacity: 1;
	height: auto;
}

.rd-navbar-fixed .rd-navbar-nav li.opened>a {
	background: #cfa04f;
	color: #FFF;
}

.rd-navbar-fixed .rd-navbar-nav li.opened>.rd-navbar-submenu-toggle::after {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}

.rd-navbar-fixed .rd-navbar-nav .rd-navbar-submenu-toggle::after {
	content: '\f078';
	position: absolute;
	top: 22px;
	right: 0;
	margin-top: -22px;
	width: 65px;
	height: 44px;
	font: 400 14px "FontAwesome";
	line-height: 42px;
	text-align: center;
	transition: 0.4s all ease;
	z-index: 2;
	color: #141414;
}

.rd-navbar-fixed .rd-navbar-toppanel {
	display: block;
}

.rd-navbar-fixed .rd-navbar-toppanel .rd-navbar-currency,
.rd-navbar-fixed .rd-navbar-toppanel .rd-navbar-lang,
.rd-navbar-fixed .rd-navbar-toppanel .rd-navbar-contact-info {
	display: none;
}

.rd-navbar-fixed .rd-navbar-toppanel .rd-navbar-toppanel-submenu {
	position: fixed;
	right: 16px;
	top: 3px;
	z-index: 1000;
}

.rd-navbar-fixed .rd-navbar-toppanel .rd-navbar-toppanel-submenu ul {
	top: 110%;
	left: auto;
	right: -10px;
}

.rd-navbar-fixed .rd-navbar-toppanel .rd-navbar-toppanel-submenu .rd-navbar-toppanel-submenu-toggle {
	width: 26px;
}

.rd-navbar-fixed .rd-navbar-toppanel .rd-navbar-toppanel-submenu .rd-navbar-toppanel-submenu-toggle:before,
.rd-navbar-fixed .rd-navbar-toppanel .rd-navbar-toppanel-submenu .rd-navbar-toppanel-submenu-toggle:after {
	color: #141414;
	font-size: 26px;
}

.rd-navbar-fixed .rd-navbar-collapse,
.rd-navbar-fixed .rd-navbar-search-toggle {
	position: fixed;
	top: 4px;
	height: 48px;
	z-index: 1000;
	background-color: transparent;
	border: none;
}

.rd-navbar-fixed .rd-navbar-collapse:focus,
.rd-navbar-fixed .rd-navbar-search-toggle:focus {
	outline: none;
}

.rd-navbar-fixed.active .rd-navbar-nav {
	transform: translateX(0);
}

@media (max-width: 1199px) {
	.rd-navbar-fixed.rd-navbar--on-search .brand-name {
		opacity: 0;
		visibility: hidden;
		transform: scale(0.7);
	}
}

.rd-navbar-fixed.rd-navbar--is-clone {
	display: none;
}

.rd-navbar-fixed.rd-navbar--is-clone .rd-navbar-panel {
	transform: translateY(-110%);
}

.rd-navbar-fixed.rd-navbar--is-clone.rd-navbar--is-stuck .rd-navbar-panel {
	transform: translateY(0);
}

.rd-navbar-fixed .rd-navbar-fixed--visible {
	display: block !important;
}

.rd-navbar-fixed .rd-navbar-fixed--hidden {
	display: none !important;
}

.rd-navbar-fixed .ec-cart-widget {
	top: 5px;
	right: 64px;
	padding-right: 10px;
	position: fixed;
	z-index: 1082;
}

.rd-navbar-fixed-linked body {
	padding-top: 56px;
}

.rd-navbar-search-form-input .form-input:focus {
	box-shadow: none;
}


/** Sidebar Layout*/

html.rd-navbar-sidebar-linked body {
	padding-left: 270px;
}

.rd-navbar-sidebar {
	display: block;
}

.rd-navbar-sidebar .rd-navbar-nav li:hover>a,
.rd-navbar-sidebar .rd-navbar-nav li:hover>a:hover,
.rd-navbar-sidebar .rd-navbar-nav li.focus>a,
.rd-navbar-sidebar .rd-navbar-nav li.focus>a:hover {
	color: #FFF;
	background: #cfa04f;
}

.rd-navbar-sidebar .rd-navbar-nav li:hover>.rd-navbar-submenu-toggle,
.rd-navbar-sidebar .rd-navbar-nav li.focus>.rd-navbar-submenu-toggle {
	color: #fff;
}

.rd-navbar-sidebar .rd-navbar-nav li:hover>.rd-navbar-submenu-toggle:hover,
.rd-navbar-sidebar .rd-navbar-nav li.focus>.rd-navbar-submenu-toggle:hover {
	cursor: pointer;
	color: #fff;
}

.rd-navbar-sidebar .rd-navbar-nav li .rd-navbar-dropdown,
.rd-navbar-sidebar .rd-navbar-nav li .rd-navbar-megamenu {
	transition: opacity 0.3s, height 0.4s ease;
	opacity: 0;
	height: 0;
	overflow: hidden;
}

.rd-navbar-sidebar .rd-navbar-nav li.opened>.rd-navbar-dropdown,
.rd-navbar-sidebar .rd-navbar-nav li.opened>.rd-navbar-megamenu {
	opacity: 1;
	height: auto;
}

.rd-navbar-sidebar .rd-navbar-nav li.opened>a {
	background: #cfa04f;
	color: #FFF;
}

.rd-navbar-sidebar .rd-navbar-nav li.opened>.rd-navbar-submenu-toggle {
	color: #fff;
}

.rd-navbar-sidebar .rd-navbar-nav li.opened>.rd-navbar-submenu-toggle::after {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}

.rd-navbar-sidebar .rd-navbar-submenu-toggle::after {
	content: '\f078';
	position: absolute;
	top: 22px;
	right: 0;
	margin-top: -22px;
	width: 65px;
	height: 44px;
	font: 400 14px "FontAwesome";
	line-height: 42px;
	text-align: center;
	transition: 0.4s all ease;
	z-index: 2;
}

.rd-navbar-sidebar .rd-navbar-brand {
	text-align: center;
	margin-bottom: 28px;
	padding: 10%;
}

.rd-navbar-sidebar .rd-navbar-brand .brand-name {
	font-size: 30px;
}

.rd-navbar-sidebar .rd-navbar-search {
	position: relative;
	margin-bottom: 10px;
}

.rd-navbar-sidebar .rd-navbar-search-toggle {
	display: none;
}

.rd-navbar-sidebar .rd-navbar-search label {
	display: block;
}

.rd-navbar-sidebar .rd-navbar-search.active .rd-navbar-search-form-input {
	opacity: 1;
	visibility: visible;
}

.rd-navbar-sidebar .rd-navbar-live-search-results {
	transform: translateY(30px);
}

.rd-navbar-sidebar .rd-navbar-live-search-results.active {
	transform: translateY(0);
}

.rd-navbar-sidebar .rd-navbar-live-search-results .search_link p {
	display: none;
}

.rd-navbar-sidebar .rd-navbar-collapse-items {
	top: 0;
	left: 0;
	padding-top: 45px;
	transform: scale(0.7);
	transform-origin: 0% 0%;
	opacity: 0;
	visibility: hidden;
}

.rd-navbar-sidebar .rd-navbar-collapse {
	position: absolute;
	top: 4px;
	left: 4px;
	display: inline-block;
	z-index: 1;
}

.rd-navbar-sidebar .rd-navbar-collapse.active .rd-navbar-collapse-items {
	opacity: 1;
	visibility: visible;
	transform: scale(1);
}

.rd-navbar-sidebar .rd-navbar-sidebar--visible {
	display: block;
}

.rd-navbar-sidebar .rd-navbar-sidebar--hidden {
	display: none;
}


/** @subsection   Page boxed layout style redeclaration** @description  Redefines navbar style inside boxed layout** @see          ../modules/_page-layouts.scss*/

html.boxed.rd-navbar--has-sidebar body {
	padding-left: 300px;
	padding-right: 30px;
}

html.boxed .rd-navbar--is-clone {
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
}

ul ul,
ul ol,
ol ul,
ol ol {
	padding-left: 0;
}

.rd-navbar.static-position:first-child {
	position: static;
}

.rd-navbar.static-position:first-child .rd-navbar-nav>li>a,
.rd-navbar.static-position:first-child .rd-navbar-shop,
.rd-navbar.static-position:first-child .rd-navbar-search-toggle {
	color: #212121;
}

.rd-navbar.static-position:first-child .rd-navbar-inner {
	padding-top: 31px;
	padding-bottom: 40px;
}

.rd-navbar.static-position:first-child .rd-navbar-nav-wrap {
	padding-top: 9px;
}

.rd-navbar.static-position:first-child:after {
	content: none;
}


/** Navbar components*/

.rd-navbar {
	display: none;
	background: #fff;
	box-shadow: none;
}

.rd-navbar-toggle {
	display: inline-block;
	position: relative;
	width: 48px;
	height: 48px;
	line-height: 48px;
	cursor: pointer;
	color: #fff;
	background-color: transparent;
	border: none;
	display: none;
}

.rd-navbar-toggle span {
	position: relative;
	display: block;
	margin: auto;
	transition: .3s all ease;
}

.rd-navbar-toggle span:after,
.rd-navbar-toggle span:before {
	content: "";
	position: absolute;
	left: 0;
	top: -8px;
	transition: .3s all ease;
}

.rd-navbar-toggle span:after {
	top: 8px;
}

.rd-navbar-toggle span:after,
.rd-navbar-toggle span:before,
.rd-navbar-toggle span {
	width: 24px;
	height: 4px;
	background-color: #fff;
	backface-visibility: hidden;
	border-radius: 2px;
}

.rd-navbar-toggle span {
	transform: rotate(180deg);
}

.rd-navbar-toggle span:before,
.rd-navbar-toggle span:after {
	transform-origin: 1.71429px center;
}

.rd-navbar-toggle.active span {
	transform: rotate(360deg);
}

.rd-navbar-toggle.active span:before,
.rd-navbar-toggle.active span:after {
	top: 0;
	width: 15px;
}

.rd-navbar-toggle.active span:before {
	-webkit-transform: rotate3d(0, 0, 1, -40deg);
	transform: rotate3d(0, 0, 1, -40deg);
}

.rd-navbar-toggle.active span:after {
	-webkit-transform: rotate3d(0, 0, 1, 40deg);
	transform: rotate3d(0, 0, 1, 40deg);
}

.rd-navbar-toggle:focus {
	outline: none;
}

.rd-navbar-brand {
	flex-grow: 1;
	flex-shrink: 0;
}

.rd-navbar-brand .brand-name {
	color: #474747;
	font-size: 25px;
	line-height: 40px;
	font-weight: 700;
}

.rd-navbar-submenu-toggle {
	cursor: pointer;
}

.rd-navbar-submenu-toggle:hover {
	color: #cfa04f;
}

.rd-navbar-submenu-toggle:after {
	margin-left: 4px;
	content: '\f236';
	font-size: 16px;
	font-family: "Material Design Icons";
}

.rd-navbar-dropdown {
	display: none;
	box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.12);
}

.rd-navbar-search-toggle {
	cursor: pointer;
	display: inline-block;
	font: 400 18px/36px "FontAwesome";
}

.rd-navbar-search-toggle,
.rd-navbar-search-toggle:before,
.rd-navbar-search-toggle:after {
	text-align: center;
	width: 36px;
	height: 36px;
}

.rd-navbar-search-toggle:before,
.rd-navbar-search-toggle:after {
	position: absolute;
	left: 0;
	top: 0;
	font-family: FontAwesome;
	transition: .3s all ease;
	width: 48px;
	height: 100%;
	line-height: 48px;
}

.rd-navbar-search-toggle:before {
	content: '\f002';
	transform: scale(1) rotate(0deg);
}

.rd-navbar-search-toggle:after {
	content: '\f00d';
	transform: scale(0) rotate(-90deg);
}

.rd-navbar-search-toggle.active:before {
	transform: scale(0) rotate(90deg);
}

.rd-navbar-search-toggle.active:after {
	transform: scale(1) rotate(0deg);
}

.rd-navbar-fixed .rd-navbar-search-toggle,
.rd-navbar-fixed .rd-navbar-search-toggle:before {
	width: 48px;
	line-height: 48px;
}

.rd-navbar-search-form-submit {
	display: inline-block;
	position: relative;
	width: 48px;
	height: 48px;
	line-height: 48px;
	cursor: pointer;
	color: #141414;
	text-align: center;
	font-size: 24px;
}

.rd-navbar-search-form-submit:before {
	content: "\f002";
	font-weight: 400;
	font-family: "FontAwesome";
}

.rd-navbar-search-form-submit.active {
	transform: scale(0.7);
}

.rd-navbar-live-search-results {
	display: none;
	position: absolute;
	left: 4px;
	right: 4px;
	padding: 16px 8px 8px;
	top: 100%;
	font-size: 16px;
	line-height: 34px;
	color: #333;
	background: #FFF;
	box-shadow: none;
	opacity: 0;
	visibility: hidden;
	text-align: left;
	z-index: 998;
}

.rd-navbar-live-search-results .search-quick-result {
	padding-left: 8px;
	font-size: 14px;
	line-height: 30px;
	color: #757575;
}

.rd-navbar-live-search-results .search_list {
	margin-top: 4px;
	font-size: 16px;
	line-height: 30px;
}

.rd-navbar-live-search-results .search_list li+li {
	margin-top: 2px;
}

.rd-navbar-live-search-results .search_list .search_list li+li:last-child {
	margin-top: 8px;
	border-top: 1px solid #EBEBEB;
	padding-top: 7px;
}

.rd-navbar-live-search-results .search_link {
	display: block;
	padding: 8px;
	color: #757575;
	cursor:pointer;
	border-radius: 2px;
}

.rd-navbar-live-search-results .search_link:hover {
	background: #F7F7F7;
}

.rd-navbar-live-search-results .search_link p {
	margin-top: 0;
	font-size: 14px;
	display: none;
}

.rd-navbar-live-search-results .search_title {
	color: #212121;
	font-weight: 400;
}

.rd-navbar-live-search-results .search_submit {
	display: block;
	text-align: center;
	padding: 8px;
	font-weight: 700;
	color: #cfa04f;
	text-transform: uppercase;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
}

.rd-navbar-live-search-results .search_submit:hover {
	background: #F7F7F7;
}

.rd-navbar-live-search-results.active {
   visibility: visible;
    opacity: 1;
    display: block;
    background: #fff;
    z-index: 99;
        max-height: 200px;
    overflow: auto;
}

.rd-navbar-search-wrap {
    position: relative;
}
@media (min-width: 1200px) {
	.rd-navbar-live-search-results .search_link p {
		display: block;
	}
}

.rd-navbar-live-search-results {
	transform: translateY(-100%);
}

.rd-navbar-live-search-results.active {
	transform: translateY(0);
}

.rd-navbar-shop {
	display: inline-block;
	position: relative;
}

.rd-navbar-shop:focus {
	outline: 0;
	color: #cfa04f;
}

.rd-navbar-shop-toggle {
	display: inline-block;
}

.rd-navbar-shop-panel {
	position: absolute;
	right: 0;
	top: calc(100% + 30px);
	z-index: 5;
	height: calc(100vh - 66px);
	overflow: auto;
	min-width: 270px;
	padding: 20px;
	box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.12);
	background-color: #fff;
	transition: .15s ease-out;
	opacity: 0;
	visibility: hidden;
}

@media (min-height: 450px) {
	.rd-navbar-shop-panel {
		height: auto;
	}
}

.rd-navbar-shop-panel h4 {
	margin-bottom: 10px;
}

.rd-navbar-shop-panel h4+.btn {
	margin-top: 14px;
}

.rd-navbar-shop-product {
	padding-right: 30px;
	position: relative;
}

.rd-navbar-shop-product-delete {
	position: absolute;
	right: 0;
	top: 0;
	font-size: 18px;
	color: #cfa04f;
	transition: .3s;
}

.rd-navbar-shop-product-delete:hover {
	color: #141414;
}

.rd-navbar-shop .label {
	margin-left: 6px;
}

.rd-navbar-shop.active .rd-navbar-shop-panel {
	opacity: 1;
	visibility: visible;
	top: calc(100% + 10px);
}

.rd-navbar-toppanel {
	border-bottom: 1px solid #e8e8e8;
}

.rd-navbar-toppanel-inner {
	display: flex;
	justify-content: space-between;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 15px;
	padding-right: 15px;
}

.rd-navbar-toppanel .rd-navbar-toppanel-wrapper {
	display: flex;
	align-items: center;
}

.rd-navbar-toppanel .rd-navbar-toppanel-submenu {
	position: relative;
	height: 50px;
}

.rd-navbar-toppanel .rd-navbar-toppanel-submenu-toggle {
	position: relative;
	display: inline-block;
	height: 50px;
	width: 16px;
}

.rd-navbar-toppanel .rd-navbar-toppanel-submenu-toggle:before,
.rd-navbar-toppanel .rd-navbar-toppanel-submenu-toggle:after {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	font-family: "Material Design Icons";
	color: #141414;
	font-size: 18px;
}

.rd-navbar-toppanel .rd-navbar-toppanel-submenu-toggle:before {
	content: "\f44e";
	opacity: 1;
}

.rd-navbar-toppanel .rd-navbar-toppanel-submenu-toggle:after {
	content: "\f48f";
	opacity: 0;
}

.rd-navbar-toppanel .rd-navbar-toppanel-submenu ul {
	position: absolute;
	top: 110%;
	left: 0;
	width: 194px;
	z-index: 5;
	opacity: 0;
	visibility: hidden;
	background-color: #f5f5f7;
	transition: .3s;
	text-align: left;
}

.rd-navbar-toppanel .rd-navbar-toppanel-submenu ul>li>a:hover {
	color: #cfa04f;
}

.rd-navbar-toppanel .rd-navbar-toppanel-submenu ul>li>a {
	display: inline-block;
	padding: 10px 21px;
	color: #141414;
}

.rd-navbar-toppanel .rd-navbar-toppanel-submenu ul>li+li {
	border-top: 1px dotted #e5e5e8;
}

.rd-navbar-toppanel .rd-navbar-toppanel-submenu.active .rd-navbar-toppanel-submenu-toggle:before {
	opacity: 0;
}

.rd-navbar-toppanel .rd-navbar-toppanel-submenu.active .rd-navbar-toppanel-submenu-toggle:after {
	opacity: 1;
}

.rd-navbar-toppanel .rd-navbar-toppanel-submenu.active ul {
	top: 100%;
	opacity: 1;
	visibility: visible;
}

.rd-navbar-currency,
.rd-navbar-lang {
	position: relative;
}

.rd-navbar-currency>[data-rd-navbar-toggle],
.rd-navbar-lang>[data-rd-navbar-toggle] {
	height: 50px;
	padding: 0 16px;
	vertical-align: middle;
	display: table-cell;
	border-right: 1px solid #e8e8e8;
	color: #000;
}

.rd-navbar-currency>[data-rd-navbar-toggle]:hover,
.rd-navbar-lang>[data-rd-navbar-toggle]:hover {
	color: #cfa04f;
}

.rd-navbar-currency>[data-rd-navbar-toggle]:after,
.rd-navbar-lang>[data-rd-navbar-toggle]:after {
	margin-left: 10px;
	content: '\f236';
	font-size: 14px;
	font-family: "Material Design Icons";
}

.rd-navbar-currency>ul,
.rd-navbar-lang>ul {
	position: absolute;
	top: 110%;
	z-index: 9;
	right: 0;
	width: 100%;
	opacity: 0;
	background-color: #f5f5f7;
	visibility: hidden;
	transition: .15s ease-out;
}

.rd-navbar-currency>ul>li>a,
.rd-navbar-lang>ul>li>a {
	width: 100%;
	display: inline-block;
	padding: 10px 20px;
	color: #141414;
}

.rd-navbar-currency>ul>li>a:hover,
.rd-navbar-lang>ul>li>a:hover {
	color: #cfa04f;
}

.rd-navbar-currency>ul>li+li,
.rd-navbar-lang>ul>li+li {
	border-top: 1px dotted #e5e5e8;
}

.rd-navbar-currency.active>ul,
.rd-navbar-lang.active>ul {
	opacity: 1;
	visibility: visible;
	top: 100%;
}


/** Fixed Layout*/

.rd-navbar-fixed {
	display: block;
}

.rd-navbar-fixed .rd-navbar-brand {
	position: relative;
	display: flex;
	justify-content: center;
}

.rd-navbar-fixed .rd-navbar-brand .brand-name {
	display: inline-block;
	font-size: 20px;
	line-height: 48px;
	color: #fff;
}

.rd-navbar-fixed .rd-navbar-brand .brand-name img {
	max-width: 120px;
}

@media (min-width: 576px) {
	.rd-navbar-fixed .rd-navbar-brand .brand-name img {
		max-width: none;
	}
}

.rd-navbar-fixed .rd-navbar-brand .brand-slogan {
	display: none;
}

.rd-navbar-fixed .rd-navbar-elements-wrap {
	width: 100%;
}

.rd-navbar-fixed .rd-navbar-elements-wrap .rd-navbar-socials {
	display: none !important;
}

.rd-navbar-fixed .rd-navbar-toppanel {
	border-bottom: 0;
}

.rd-navbar-fixed .rd-navbar-brand {
	display: block;
	text-align: left;
	position: fixed;
	top: 4px;
	left: 56px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 22px;
	line-height: 46px;
	height: 48px;
	z-index: 17;
}

.rd-navbar-fixed .rd-navbar-brand a {
	display: inline-block;
}

.rd-navbar-fixed .rd-navbar-toggle span:after,
.rd-navbar-fixed .rd-navbar-toggle span:before,
.rd-navbar-fixed .rd-navbar-toggle span {
	background-color: #141414;
}

.rd-navbar-fixed .rd-navbar-panel {
	display: flex;
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	padding: 4px;
	height: 56px;
	color: #141414;
	z-index: 999;
}

.rd-navbar-fixed .rd-navbar-panel:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	box-shadow: 0 0 13px -1px rgba(0, 0, 0, 0.17);
	background: #fff;
}

.rd-navbar-fixed .rd-navbar-toggle {
	display: inline-block;
}

.rd-navbar-fixed .rd-navbar-nav-wrap {
	position: fixed;
	top: -56px;
	left: 0;
	width: 232px;
	padding: 112px 0 56px;
	bottom: -56px;
	color: #fff;
	background: #fff;
	z-index: 15;
	transform: translateX(-120%);
}

.rd-navbar-fixed .rd-navbar-nav-wrap.active {
	transform: translateX(0);
}

.rd-navbar-fixed .rd-navbar-nav {
	display: block;
	height: 100%;
	overflow: auto;
	font-size: 16px;
	line-height: 26px;
	text-align: left;
}

.rd-navbar-fixed .rd-navbar-nav:before,
.rd-navbar-fixed .rd-navbar-nav:after {
	content: '';
	display: block;
	height: 8px;
}

.rd-navbar-fixed .rd-navbar-nav li>a {
	display: block;
	padding: 11px 56px 11px 16px;
	color: #141414;
}

.rd-navbar-fixed .rd-navbar-nav li.opened>a,
.rd-navbar-fixed .rd-navbar-nav li a:hover {
	background: white;
}

.rd-navbar-fixed .rd-navbar-nav li.active>a {
	color: #fff;
	background: #cfa04f;
}

.rd-navbar-fixed .rd-navbar-dropdown {
	box-shadow: none;
}

.rd-navbar-fixed .rd-navbar-dropdown,
.rd-navbar-fixed .rd-navbar-megamenu {
	display: none;
}

.rd-navbar-fixed .rd-navbar-submenu {
	position: relative;
}

.rd-navbar-fixed .rd-navbar-submenu li>a {
	padding-left: 32px;
}

.rd-navbar-fixed .rd-navbar-submenu .rd-navbar-dropdown li li>a,
.rd-navbar-fixed .rd-navbar-submenu .rd-navbar-megamenu ul li li>a {
	padding-left: 48px;
}

.rd-navbar-fixed .rd-navbar-submenu.opened>.rd-navbar-dropdown,
.rd-navbar-fixed .rd-navbar-submenu.opened>.rd-navbar-megamenu {
	display: block;
}

.rd-navbar-fixed .rd-navbar-search {
	display: block;
}

.rd-navbar-fixed .rd-navbar-search form button[type="submit"] {
	display: none;
}

.rd-navbar-fixed .rd-navbar-search.active .rd-navbar-search-form {
	pointer-events: all;
}

.rd-navbar-fixed .rd-navbar-search.active .rd-navbar-search-form-input {
	opacity: 1;
	visibility: visible;
}

.rd-navbar-fixed .rd-navbar-search-form,
.rd-navbar-fixed .rd-navbar-search-toggle {
	right: 94px;
	top: 9px;
}

.rd-navbar-fixed .rd-navbar-search-toggle {
	display: block;
	position: fixed;
	top: 4px;
	pointer-events: all;
	right: 39px;
	font-family: 'Material Icons';
	width: 48px;
	height: 48px;
	z-index: 18;
}

.rd-navbar-fixed .rd-navbar-search-form,
.rd-navbar-fixed .rd-navbar-search .rd-navbar-live-search-results {
	position: fixed;
	margin-right: 0;
	margin-left: auto;
	width: calc(100% - 106px);
	pointer-events: none;
}

.rd-navbar-fixed .rd-navbar-search .rd-navbar-live-search-results {
	top: 56px;
}

.rd-navbar-fixed .rd-navbar-search-form {
	z-index: 1000;
}

.rd-navbar-fixed .rd-navbar-search-form-input {
	visibility: hidden;
	opacity: 0;
	height: 40px !important;
	background: #EAEAEA;
	box-shadow: 0 0 10px 0 rgba(136, 136, 136, 0.7);
	transition: .3s all ease;
	z-index: 1;
	width: 100%;
	margin: 0;
}

.rd-navbar-fixed .rd-navbar-search-form-input input {
	display: block;
	width: 100%;
	padding: 0 20px;
	min-height: 40px;
	font-size: 16px;
	font-weight: 400;
	line-height: 34px;
	color: #141414;
	border: none;
	background: #fff;
}

.rd-navbar-fixed .rd-navbar-search-form-submit {
	position: absolute;
	top: 4px;
	right: 4px;
	opacity: 0;
	visibility: hidden;
	z-index: 9;
	background-color: transparent;
	border: none;
}

.rd-navbar-fixed .rd-navbar-search-form-submit:focus {
	outline: none;
}

.rd-navbar-fixed .rd-navbar-search.active .rd-navbar-search-form-input,
.rd-navbar-fixed .rd-navbar-search.active .rd-navbar-search-form-submit {
	opacity: 1;
	visibility: visible;
}

@media (min-width: 992px) {
	.rd-navbar-fixed .rd-navbar-search-form,
	.rd-navbar-fixed .rd-navbar-search .rd-navbar-live-search-results {
		max-width: 340px;
	}
	.rd-navbar-fixed .rd-navbar-search .rd-navbar-live-search-results {
		right: 4px;
	}
}

@media (min-width: 576px) {
	.rd-navbar-fixed .rd-navbar-search .rd-navbar-brand .brand-name {
		font-size: 24px;
	}
}

.rd-navbar-fixed .rd-navbar-nav li:hover>a,
.rd-navbar-fixed .rd-navbar-nav li:hover>a:hover,
.rd-navbar-fixed .rd-navbar-nav li.focus>a,
.rd-navbar-fixed .rd-navbar-nav li.focus>a:hover {
	color: #FFF;
	background: #cfa04f;
}

.rd-navbar-fixed .rd-navbar-nav li:hover>.rd-navbar-submenu-toggle:hover,
.rd-navbar-fixed .rd-navbar-nav li.focus>.rd-navbar-submenu-toggle:hover {
	cursor: pointer;
}

.rd-navbar-fixed .rd-navbar-nav li .rd-navbar-dropdown,
.rd-navbar-fixed .rd-navbar-nav li .rd-navbar-megamenu {
	transition: opacity 0.3s, height 0.4s ease;
	opacity: 0;
	height: 0;
	overflow: hidden;
}

.rd-navbar-fixed .rd-navbar-nav li.opened>.rd-navbar-dropdown,
.rd-navbar-fixed .rd-navbar-nav li.opened>.rd-navbar-megamenu {
	opacity: 1;
	height: auto;
}

.rd-navbar-fixed .rd-navbar-nav li.opened>a {
	background: #cfa04f;
	color: #FFF;
}

.rd-navbar-fixed .rd-navbar-nav li.opened>.rd-navbar-submenu-toggle::after {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}

.rd-navbar-fixed .rd-navbar-nav .rd-navbar-submenu-toggle::after {
	content: '\f078';
	position: absolute;
	top: 22px;
	right: 0;
	margin-top: -22px;
	width: 65px;
	height: 44px;
	font: 400 14px "FontAwesome";
	line-height: 42px;
	text-align: center;
	transition: 0.4s all ease;
	z-index: 2;
	color: #141414;
}

.rd-navbar-fixed .rd-navbar-toppanel {
	display: block;
}

.rd-navbar-fixed .rd-navbar-toppanel .rd-navbar-currency,
.rd-navbar-fixed .rd-navbar-toppanel .rd-navbar-lang,
.rd-navbar-fixed .rd-navbar-toppanel .rd-navbar-contact-info {
	display: none;
}

.rd-navbar-fixed .rd-navbar-toppanel .rd-navbar-toppanel-submenu {
	position: fixed;
	right: 16px;
	top: 3px;
	z-index: 1000;
}

.rd-navbar-fixed .rd-navbar-toppanel .rd-navbar-toppanel-submenu ul {
	top: 110%;
	left: auto;
	right: -10px;
}

.rd-navbar-fixed .rd-navbar-toppanel .rd-navbar-toppanel-submenu .rd-navbar-toppanel-submenu-toggle {
	width: 26px;
}

.rd-navbar-fixed .rd-navbar-toppanel .rd-navbar-toppanel-submenu .rd-navbar-toppanel-submenu-toggle:before,
.rd-navbar-fixed .rd-navbar-toppanel .rd-navbar-toppanel-submenu .rd-navbar-toppanel-submenu-toggle:after {
	color: #141414;
	font-size: 26px;
}

.rd-navbar-fixed .rd-navbar-collapse,
.rd-navbar-fixed .rd-navbar-search-toggle {
	position: fixed;
	top: 4px;
	height: 48px;
	z-index: 1000;
	background-color: transparent;
	border: none;
}

.rd-navbar-fixed .rd-navbar-collapse:focus,
.rd-navbar-fixed .rd-navbar-search-toggle:focus {
	outline: none;
}

.rd-navbar-fixed.active .rd-navbar-nav {
	transform: translateX(0);
}

@media (max-width: 1199px) {
	.rd-navbar-fixed.rd-navbar--on-search .brand-name {
		opacity: 0;
		visibility: hidden;
		transform: scale(0.7);
	}
}

.rd-navbar-fixed.rd-navbar--is-clone {
	display: none;
}

.rd-navbar-fixed.rd-navbar--is-clone .rd-navbar-panel {
	transform: translateY(-110%);
}

.rd-navbar-fixed.rd-navbar--is-clone.rd-navbar--is-stuck .rd-navbar-panel {
	transform: translateY(0);
}

.rd-navbar-fixed .rd-navbar-fixed--visible {
	display: block !important;
}

.rd-navbar-fixed .rd-navbar-fixed--hidden {
	display: none !important;
}

.rd-navbar-fixed .ec-cart-widget {
	top: 5px;
	right: 64px;
	padding-right: 10px;
	position: fixed;
	z-index: 1082;
}

.rd-navbar-fixed-linked body {
	padding-top: 56px;
}

.rd-navbar-search-form-input .form-input:focus {
	box-shadow: none;
}


/** Fullwidth Layout*/

.rd-navbar-fullwidth {
	display: block;
}

.rd-navbar-fullwidth .rd-navbar-panel {
	text-align: center;
	padding: 24px 0;
}

.rd-navbar-fullwidth .rd-navbar-brand {
	display: inline-block;
}

.rd-navbar-fullwidth .rd-navbar-elements-wrap {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	padding: 20px 15px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.rd-navbar-fullwidth .rd-navbar-nav-wrap {
	position: relative;
	padding-bottom: 8px;
}

.rd-navbar-fullwidth .rd-navbar-nav-wrap .rd-navbar-megamenu {
	left: 0;
	right: 0;
}

.rd-navbar-fullwidth .rd-navbar-search-toggle {
	right: 6%;
}

.rd-navbar-fullwidth .rd-navbar-nav>li {
	display: inline-block;
}

.rd-navbar-fullwidth .rd-navbar-nav>li+li {
	margin-left: 12px;
}

.rd-navbar-fullwidth .rd-navbar-nav>li>a {
	display: inline-block;
	text-align: center;
	padding: 10px;
}

.rd-navbar-fullwidth.rd-navbar--is-stuck .rd-navbar-nav-wrap {
	padding-top: 8px;
}

.rd-navbar-fullwidth.rd-navbar--is-stuck .rd-navbar-panel {
	display: none;
}

.rd-navbar-fullwidth .rd-navbar-fullwidth--visible {
	display: block;
}

.rd-navbar-fullwidth .rd-navbar-fullwidth--hidden {
	display: none;
}

.rd-navbar-fullwidth.rd-navbar-fullwidth-variant-1 .rd-navbar-panel {
	text-align: left;
}

.rd-navbar-fullwidth.rd-navbar-fullwidth-variant-1 .rd-navbar-nav {
	text-align: left;
}

.rd-navbar-fullwidth.rd-navbar-fullwidth-variant-1 .rd-navbar-elements-wrap {
	justify-content: flex-end;
}

.rd-navbar-fullwidth.rd-navbar-fullwidth-variant-1 .rd-navbar-elements-wrap .rd-navbar-shop {
	margin-left: 40px;
}


/** Sidebar Layout*/

html.rd-navbar-sidebar-linked body {
	padding-left: 270px;
}

.rd-navbar-sidebar {
	display: block;
}

.rd-navbar-sidebar .rd-navbar-nav li:hover>a,
.rd-navbar-sidebar .rd-navbar-nav li:hover>a:hover,
.rd-navbar-sidebar .rd-navbar-nav li.focus>a,
.rd-navbar-sidebar .rd-navbar-nav li.focus>a:hover {
	color: #FFF;
	background: #cfa04f;
}

.rd-navbar-sidebar .rd-navbar-nav li:hover>.rd-navbar-submenu-toggle,
.rd-navbar-sidebar .rd-navbar-nav li.focus>.rd-navbar-submenu-toggle {
	color: #fff;
}

.rd-navbar-sidebar .rd-navbar-nav li:hover>.rd-navbar-submenu-toggle:hover,
.rd-navbar-sidebar .rd-navbar-nav li.focus>.rd-navbar-submenu-toggle:hover {
	cursor: pointer;
	color: #fff;
}

.rd-navbar-sidebar .rd-navbar-nav li .rd-navbar-dropdown,
.rd-navbar-sidebar .rd-navbar-nav li .rd-navbar-megamenu {
	transition: opacity 0.3s, height 0.4s ease;
	opacity: 0;
	height: 0;
	overflow: hidden;
}

.rd-navbar-sidebar .rd-navbar-nav li.opened>.rd-navbar-dropdown,
.rd-navbar-sidebar .rd-navbar-nav li.opened>.rd-navbar-megamenu {
	opacity: 1;
	height: auto;
}

.rd-navbar-sidebar .rd-navbar-nav li.opened>a {
	background: #cfa04f;
	color: #FFF;
}

.rd-navbar-sidebar .rd-navbar-nav li.opened>.rd-navbar-submenu-toggle {
	color: #fff;
}

.rd-navbar-sidebar .rd-navbar-nav li.opened>.rd-navbar-submenu-toggle::after {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}

.rd-navbar-sidebar .rd-navbar-submenu-toggle::after {
	content: '\f078';
	position: absolute;
	top: 22px;
	right: 0;
	margin-top: -22px;
	width: 65px;
	height: 44px;
	font: 400 14px "FontAwesome";
	line-height: 42px;
	text-align: center;
	transition: 0.4s all ease;
	z-index: 2;
}

.rd-navbar-sidebar .rd-navbar-brand {
	text-align: center;
	margin-bottom: 28px;
	padding: 10%;
}

.rd-navbar-sidebar .rd-navbar-brand .brand-name {
	font-size: 30px;
}

.rd-navbar-sidebar .rd-navbar-search {
	position: relative;
	margin-bottom: 10px;
}

.rd-navbar-sidebar .rd-navbar-search-toggle {
	display: none;
}

.rd-navbar-sidebar .rd-navbar-search label {
	display: block;
}

.rd-navbar-sidebar .rd-navbar-search.active .rd-navbar-search-form-input {
	opacity: 1;
	visibility: visible;
}

.rd-navbar-sidebar .rd-navbar-live-search-results {
	transform: translateY(30px);
}

.rd-navbar-sidebar .rd-navbar-live-search-results.active {
	transform: translateY(0);
}

.rd-navbar-sidebar .rd-navbar-live-search-results .search_link p {
	display: none;
}

.rd-navbar-sidebar .rd-navbar-collapse-items {
	top: 0;
	left: 0;
	padding-top: 45px;
	transform: scale(0.7);
	transform-origin: 0% 0%;
	opacity: 0;
	visibility: hidden;
}

.rd-navbar-sidebar .rd-navbar-collapse {
	position: absolute;
	top: 4px;
	left: 4px;
	display: inline-block;
	z-index: 1;
}

.rd-navbar-sidebar .rd-navbar-collapse.active .rd-navbar-collapse-items {
	opacity: 1;
	visibility: visible;
	transform: scale(1);
}

.rd-navbar-sidebar .rd-navbar-sidebar--visible {
	display: block;
}

.rd-navbar-sidebar .rd-navbar-sidebar--hidden {
	display: none;
}


/** Static Layout*/

.rd-navbar-static {
	display: block;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.09);
}

.rd-navbar-static .rd-navbar-panel {
	padding: 15px 0;
}

.rd-navbar-static .rd-navbar-elements-wrap {
	display: table-cell;
	vertical-align: middle;
	width: 100%;
}

.rd-navbar-static .rd-navbar-brand {
	display: table-cell;
	vertical-align: middle;
}

.rd-navbar-static .rd-navbar-brand>* {
	display: inline-block;
	vertical-align: middle;
}

.rd-navbar-static .rd-navbar-brand>img {
	margin-right: 10px;
}

.rd-navbar-static .rd-navbar-brand>a {
	font-size: 36px;
	line-height: 48px;
}

.rd-navbar-static .rd-navbar-brand>a span {
	display: none;
}

.rd-navbar-static .rd-navbar-collapse {
	display: block;
	float: right;
	margin-left: -15px;
	margin-top: 23px;
}

.rd-navbar-static .rd-navbar-collapse li {
	display: inline-block;
	margin-left: 15px;
}

.rd-navbar-static .rd-navbar-collapse li a:hover {
	text-decoration: underline;
}

.rd-navbar-static .rd-navbar-panel {
	display: flex;
	align-items: center;
}

.rd-navbar-static .rd-navbar-toggle {
	position: fixed;
	z-index: 17;
	top: 4px;
	left: 4px;
}

.rd-navbar-static *+.rd-navbar-shop {
	margin-left: 20px;
}

.rd-navbar-static .rd-navbar-shop .label {
	margin-left: 6px;
}

.rd-navbar-static .rd-navbar-nav {
	position: absolute;
	top: 50%;
	left: 45%;
	transform: translate(-50%, -50%);
	z-index: 5;
}

@media (min-width: 1200px) {
	.rd-navbar-static .rd-navbar-nav {
		left: 45%;
	}
}

.rd-navbar-static .rd-navbar-nav {
	margin-bottom: 0;
}

.rd-navbar-static .rd-navbar-nav>li {
	display: inline-block;
}

.rd-navbar-static .rd-navbar-nav>li+li {
	margin-left: 12px;
}

@media (min-width: 1200px) {
	.rd-navbar-static .rd-navbar-nav>li+li {
		margin-left: 29px;
	}
}

.rd-navbar-static .rd-navbar-static--visible {
	display: block;
}

.rd-navbar-static .rd-navbar-static--hidden {
	display: none;
}

@media (max-width: 1250px) {
	.navbar-classic.rd-navbar-static .rd-navbar-elements-wrap {
		padding: 0 20px;
	}
}

.navbar-classic.rd-navbar-static .rd-navbar-elements-wrap {
	position: absolute;
	display: flex;
	justify-content: space-between;
	width: 100%;
}

.navbar-classic.rd-navbar-static .rd-navbar-elements-wrap .rd-navbar-socials {
	align-self: flex-end;
}

.navbar-classic.rd-navbar-static .rd-navbar-brand {
	display: inline-block;
	margin: 0 auto;
	flex-grow: 0;
}

.navbar-classic.rd-navbar-static .rd-navbar-panel {
	display: flex;
	padding-bottom: 20px;
}

.navbar-classic.rd-navbar-static .rd-navbar-nav {
	position: static;
	transform: none;
	padding-bottom: 8px;
}

.navbar-classic.rd-navbar--is-stuck .rd-navbar-elements-wrap,
.navbar-classic.rd-navbar--is-stuck .rd-navbar-panel {
	display: none;
}

.navbar-classic.rd-navbar--is-stuck .rd-navbar-nav {
	padding-top: 8px;
}

.navbar-modern.rd-navbar-static .rd-navbar-elements-wrap {
	position: absolute;
	display: flex;
	justify-content: flex-end;
	width: 100%;
}

.navbar-modern.rd-navbar-static .rd-navbar-elements-wrap .rd-navbar-socials {
	align-self: center;
}

.navbar-modern.rd-navbar-static .rd-navbar-brand {
	display: inline-block;
	margin: 0;
	pointer-events: none;
}

.navbar-modern.rd-navbar-static .rd-navbar-brand>* {
	pointer-events: auto;
}

.navbar-modern.rd-navbar-static .rd-navbar-panel {
	display: flex;
	padding-bottom: 20px;
}

.navbar-modern.rd-navbar-static .rd-navbar-nav {
	position: static;
	transform: none;
	padding-bottom: 8px;
	text-align: left;
}

.navbar-modern.rd-navbar--is-stuck .rd-navbar-elements-wrap,
.navbar-modern.rd-navbar--is-stuck .rd-navbar-panel {
	display: none;
}

.navbar-modern.rd-navbar--is-stuck .rd-navbar-nav {
	padding-top: 8px;
}


/** @section Animate */

.animated {
	animation-duration: 1s;
	animation-fill-mode: both;
	opacity: 1!important;
}

.animated.infinite {
	animation-iteration-count: infinite;
}

.animated.hinge {
	animation-duration: 2s;
}

html:not(.lt-ie10) .not-animated {
	opacity: 0;
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.fadeIn {
	animation-name: fadeIn;
}

@keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translate3d(0, 100%, 0);
	}
	100% {
		opacity: 1;
		transform: none;
	}
}

.fadeInUp {
	animation-name: fadeInUp;
}

@keyframes fadeInDown {
	0% {
		opacity: 0;
		transform: translate3d(0, -100%, 0);
	}
	100% {
		opacity: 1;
		transform: none;
	}
}

.fadeInDown {
	animation-name: fadeInDown;
}

@keyframes fadeInLeft {
	0% {
		opacity: 0;
		transform: translate3d(-100%, 0, 0);
	}
	100% {
		opacity: 1;
		transform: none;
	}
}

.fadeInLeft {
	animation-name: fadeInLeft;
}

@keyframes fadeInRight {
	0% {
		opacity: 0;
		transform: translate3d(100%, 0, 0);
	}
	100% {
		opacity: 1;
		transform: none;
	}
}

.fadeInRight {
	animation-name: fadeInRight;
}

@keyframes fadeOut {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

.fadeOut {
	animation-name: fadeOut;
}

@keyframes slideInDown {
	0% {
		transform: translate3d(0, -100%, 0);
		visibility: visible;
	}
	100% {
		transform: translate3d(0, 0, 0);
	}
}

.slideInDown {
	animation-name: slideInDown;
}

@keyframes slideInLeft {
	0% {
		transform: translate3d(-100%, 0, 0);
		visibility: visible;
	}
	100% {
		transform: translate3d(0, 0, 0);
	}
}

.slideInLeft {
	animation-name: slideInLeft;
}

@keyframes slideInRight {
	0% {
		transform: translate3d(100%, 0, 0);
		visibility: visible;
	}
	100% {
		transform: translate3d(0, 0, 0);
	}
}

.slideInRight {
	animation-name: slideInRight;
}

@keyframes slideOutDown {
	0% {
		transform: translate3d(0, 0, 0);
	}
	100% {
		visibility: hidden;
		transform: translate3d(0, 100%, 0);
	}
}

.slideOutDown {
	animation-name: slideOutDown;
}

.counter {
	margin-bottom: 0;
}

.countdown-row {
	display: flex;
	flex-direction: row;
}

.countdown-section {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	transition: .3s;
	background-color: #cfa04f;
	color: #fff;
	line-height: 1.2;
	cursor: default;
}

.countdown-section+.countdown-section {
	margin-left: 6px;
}

.countdown-section .countdown-amount,
.countdown-section .countdown-period {
	display: block;
}

.countdown-section .countdown-period {
	font-size: 70%;
}


/** @subsection   Isotope*/

[data-isotope-layout] {
	position: relative;
	transform: translateY(-60px);
	display: block;
	margin-bottom: -60px;
	transition: .4s all ease;
	min-height: 160px;
}

[data-isotope-layout]:after {
	content: '';
	position: absolute;
	margin-top: 30px;
	width: 64px;
	height: 64px;
	top: 50%;
	left: 50%;
	background-image: url("data:image/png;base64,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