/*
Flexbox grid @mixin
EXAMPLE
.flexbox {
    @include boxGrid(5, 4%);
}
*/


/*variable*/

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

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

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

*,
*:after,
*:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}

mark {
	background: none;
}

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

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

pre {
	overflow: auto;
}

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

html,
body {
	height: 100%;
	margin: 0;
}

html {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-direction: normal;
	-webkit-box-orient: vertical;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	min-height: 100%;
	-webkit-font-smoothing: antialiased;
	-webkit-overflow-scrolling: touch;
	-webkit-text-size-adjust: none;
	-ms-text-size-adjust: none;
}

html>body {
	height: auto;
	min-height: 100%;
}

#main {
	-webkit-box-flex: 1;
	-webkit-flex-grow: 1;
	-moz-flex-grow: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
}

a {
	color: #4f4f4f;
	text-decoration: none;
	outline: 0 none;
}

a:hover {
	outline: 0 none;
}

input[type='text'],
input[type='email'],
input[type='password'],
input[type='color'],
input[type='url'],
input[type='image'],
input[type='tel'],
input[type='submit'],
input[type='file'],
input[type='range'],
input[type='reset'],
input[type='button'],
input[type='search'],
button,
textarea,
select {
	-webkit-appearance: none;
	outline: 0 none;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}

* {
	margin: 0;
	padding: 0;
	border-collapse: collapse;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

img {
	max-width: 100%;
	height: auto;
	width: auto;
	display: block;
	margin: 0 auto;
}

a>img {
	border: 0;
}

ul,
ol {
	list-style: none;
}

#wrap {
	min-height: 100%;
}

.clear {
	clear: both;
}

.cfx:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}

html[xmlns] .cfx {
	display: block;
}

* html .cfx {
	height: 1%;
}

::-moz-selection {
	color: #fff;
	background: #00c2cb;
}

::selection {
	color: #fff;
	background: #00c2cb;
}

.valign {
	display: inline-block;
	vertical-align: middle;
	max-width: 98%;
}

.vfix {
	display: inline-block;
	height: 100%;
	vertical-align: middle;
	width: 0;
}

.alignleft {
	float: left;
}

.alignright {
	float: right;
}

.googlemap img {
	max-width: none;
}

hr {
	background: #e1e1e1;
	height: 1px;
	border: 0 none;
	display: block;
	clear: both;
	margin: 20px 0;
}

strong {
	font-weight: 700;
}

.fullframe {
	height: 0;
	margin: 0;
	overflow: hidden;
	padding-bottom: 56.25%;
	padding-top: 30px;
	position: relative;
	z-index: 0;
}

.fullframe>iframe,
.fullframe>object,
.fullframe>embed {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -1;
}

input[type="submit"] {
	cursor: pointer;
}

textarea,
button,
a,
input,
.btn {
	-webkit-transition: 0.5s all ease;
	-moz-transition: 0.5s all ease;
	-ms-transition: 0.5s all ease;
	-o-transition: 0.5s all ease;
	transition: 0.5s all ease;
}

body {
	position: relative;
	font: 400 16px/1.5 "Proxima Nova", sans-serif;
	color: #4F4F4F;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-direction: normal;
	-webkit-box-orient: vertical;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-flex: auto;
	-webkit-flex: auto;
	-moz-box-flex: auto;
	-moz-flex: auto;
	-ms-flex: auto;
	flex: auto;
	overflow-x: hidden;
}

.row,
.row_1280 {
	margin: 0 auto;
	max-width: 96%;
	position: relative;
	width: 950px;
}

@media screen and (max-width: 1024px) {
	.row,
	.row_1280 {
		max-width: calc(100% - 40px);
	}
}

.row_1280 {
	width: 950px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="search"],
input[type="password"],
textarea {
	height: 50px;
	width: 100%;
	border: 1px solid #4F4F4F;
	background: #fff;
	padding: 15px 20px;
	font-family: "Proxima Nova", sans-serif;
	font-size: 14px;
}

.inline-input-wrapper input[type="text"],
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="search"]:focus,
input[type="password"]:focus,
textarea:focus {
	border-color: #7e594e;
}

.cover {
	background-size: cover!important;
	background-position: 50% 50%!important;
	background-repeat: no-repeat!important;
}

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

.flex_start {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	-webkit-justify-content: flex-start;
	-moz-justify-content: flex-start;
	justify-content: flex-start;
}

.flex_end {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	-webkit-justify-content: flex-end;
	-moz-justify-content: flex-end;
	justify-content: flex-end;
}

.flex_around {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: distribute;
	-webkit-justify-content: space-around;
	-moz-justify-content: space-around;
	justify-content: space-around;
}

.flex_center {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	-moz-align-items: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	justify-content: center;
}

.alc {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	-moz-align-items: center;
	align-items: center;
}

.al_start {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	justify-content: space-between;
	-webkit-box-align: start;
	-ms-flex-align: start;
	-webkit-align-items: flex-start;
	-moz-align-items: flex-start;
	align-items: flex-start;
}

.al_end {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	justify-content: space-between;
	-webkit-box-align: end;
	-ms-flex-align: end;
	-webkit-align-items: flex-end;
	-moz-align-items: flex-end;
	align-items: flex-end;
}

.cover {
	background-size: cover;
	background-position: 50% 50%;
	background-repeat: no-repeat;
}

.tac {
	text-align: center;
}

.last_no_spacing>*:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
}

p {
	padding-bottom: 25px;
}

@media screen and (max-width: 1024px) {
	header>*:not(.mob_header) {
		display: none;
	}
}

.top_header {
	padding-top: 22px;
	padding-bottom: 0;
	border-bottom: none;
	font-size: 14px;
	display: none;
}

.top_header .row {
	padding-bottom: 22px;
	border-bottom: 1px solid #e5e5e5;
}

.header_shipping_info {
	line-height: initial;
}

.header_currency {
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	-moz-align-items: center;
	align-items: center;
	color: #bfbfbf;
	position: relative;
	line-height: initial;
}

.header_shipping_info {
	line-height: initial;
}

.header_currency .selectric-open .label {
	font-size: 18px;
	font-weight: 600;
	color: #000000;
}

.header_currency .selectric-open .button {
	height: 6px;
	width: 9px;
	background-color: transparent;
}

.header_currency .selectric-open .button:after {
	border-style: solid;
	border-width: 0 4.5px 6px 4.5px;
	border-color: transparent transparent #7e594e transparent;
}

.header_currency .selectric {
	background-color: transparent;
	border: none;
	z-index: 5;
}

.header_currency .selectric .label {
	margin-right: 20px;
}

.header_currency .selectric .button {
	position: absolute;
	top: 50%;
	-webkit-transform: translate(0, -50%);
	-moztransform: translate(0, -50%);
	transform: translate(0, -50%);
	height: 6px;
	width: 9px;
	background-color: transparent;
	padding-right: 0px;
}

.header_currency .selectric .button:after {
	border-style: solid;
	border-width: 6px 4.5px 0 4.5px;
	border-color: #7e594e transparent transparent transparent;
}

.header_currency .selectric-items {
	width: 125px !important;
	border-radius: 25px;
	background-color: #ffffff;
	border: none;
	box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
	padding: 73px 37px 26px;
	top: -15px;
	left: -25px;
}

.header_currency .selectric-items li {
	font-size: 14px;
	padding: 0;
	color: #7e594e;
	margin-bottom: 10px;
}

.header_currency .selectric-items li.highlighted,
.header_currency .selectric-items li.selected {
	background-color: transparent;
}

.header_currency .selectric-items li:hover {
	background: none;
}

.header_currency .selectric-scroll ul li:first-child {
	border-radius: 25px 25px 0 0;
}

.header_currency .selectric-scroll ul li:last-child {
	border-radius: 0 0 25px 25px;
}

.mainMenu>ul {
	font-size: 0;
}

@media screen and (max-width: 1024px) {
	.mainMenu>ul {
		position: relative;
	}
}

.mainMenu>ul>li {
	display: inline-block;
	position: relative;
	z-index: 1;
	transition: all 0.4s ease;
}

@media screen and (max-width: 1024px) {
	.mainMenu>ul>li {
		position: static;
	}
	.mainMenu>ul>li:focus {
		background: #f6f6f6;
	}
}

@media screen and (max-width: 480px) {
	.mainMenu>ul>li {
		width: 33%;
		text-align: center;
	}
}

@media screen and (min-width: 1025px) {
	/*       .mainMenu > ul > li.active:before {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        bottom: -1px;
        height: 2px;
        background: #000; } */
	.same-divs-gift.CustomColor {
		padding: 40px 45px 15px 50px;
	}
}

.mainMenu>ul>li:hover .sub_menu {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	-webkit-align-items: flex-end;
	-moz-align-items: flex-end;
	align-items: flex-end;
}

@media screen and (max-width: 1024px) {
	.mainMenu>ul>li:hover .sub_menu {
		-webkit-flex-wrap: wrap;
		-moz-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
}

.mainMenu>ul>li:hover .sub_menu.about_sub_menu {
	-webkit-box-align: start;
	-ms-flex-align: start;
	-webkit-align-items: flex-start;
	-moz-align-items: flex-start;
	align-items: flex-start;
}

.mainMenu>ul>li:hover>a i:before {
	content: '\f0d8';
}

.mainMenu>ul>li>a {
	display: inline-block;
	padding: 40px 35px;
	font-size: 14px;
	color: #4f4f4f;
	line-height: initial;
	border-left: 1px solid transparent;
	border-right: 1px solid transparent;
}

@media screen and (max-width: 1024px) {
	.mainMenu>ul>li>a {
		padding: 35px;
		pointer-events: none;
	}
}

@media screen and (max-width: 480px) {
	.mainMenu>ul>li>a {
		padding: 30px 0;
	}
}

.mainMenu>ul>li>a:hover {
	border-left: 1px solid #E5E5E5;
	border-right: 1px solid #E5E5E5;
	background: #F6F6F6;
}

.mainMenu>ul>li>a i {
	color: #7e594e;
	margin-left: 9px;
}

.search-cart {
	position: relative;
	z-index: 3;
}

.search-cart .searchBox {
	display: inline-block;
	position: relative;
	margin-right: 29px;
	padding-right: 29px;
	border-right: 1px solid #e5e5e5;
}

.search-cart .fa-search {
	color: #7e594e;
	z-index: 9;
	cursor: pointer;
}

.search-cart .searchBox .open_form {
	display: flex;
	align-content: center;
	justify-content: center;
	height: 100%;
	flex-wrap: wrap;
	width: 22px;
}

.search-cart .fa-search.active {
	position: relative;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}

.search-cart .fa-search.active:before {
	content: '+';
	font-size: 33px;
	font-weight: 700;
	display: flex;
	position: absolute;
	top: 0;
	right: 0;
	width: 30px;
	height: 30px;
	align-items: center;
	justify-content: center;
}

.search-cart form {
	width: 339px;
	box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
	border-radius: 25px;
	display: none;
	background-color: #ffffff;
	padding: 34px 35px 37px 29px;
	position: absolute;
	top: 49px;
	right: 0;
}

@media(max-width:1024px) {
	.search-cart form {
		left: 0;
	}
}

.search-cart form input[type="text"] {
	font-size: 14px;
	height: 44px;
	background: #FFFFFF;
	border: 2px solid #E5E5E5;
	border-radius: 25px;
}

.search-cart form input[type="text"]::placeholder {
	color: #bfbfbf;
}

.search-cart form button {
	font-size: 20px;
	background-color: transparent;
	border: none;
	position: absolute;
	top: 50%;
	-webkit-transform: translate(0, -50%);
	-moztransform: translate(0, -50%);
	transform: translate(0, -50%);
	right: 35px;
	padding-top: 8px;
}

.search-cart form button img {
	width: 20px;
}

.cart-count-text img {
	width: 31px;
}

.search-cart .h_wrap_cart .cart_link {
	font-size: 22px;
	position: relative;
	color: #7e594e;
}

.search-cart .h_wrap_cart .cart_link .count {
	position: absolute;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
	transform: translate(-50%, 0);
	height: 15px;
	width: 15px;
	font-size: 10px;
	text-align: center;
	border-radius: 50%;
	color: #ffffff;
	background: #7e594e;
	border: 1px solid #fff;
	top: -5px;
}

.search-cart .h_wrap_cart .cart_popup {
	width: 360px;
	padding: 25px;
	box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
	border-radius: 25px;
	z-index: 5;
	background-color: #ffffff;
	position: absolute;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
	transform: translate(-50%, 0);
	overflow: auto;
	overflow-x: hidden;
	max-height: calc(100vh - 277px);
}

.search-cart .h_wrap_cart .cart_popup::-webkit-scrollbar {
	display: none;
}

.search-cart .h_wrap_cart .cart_popup .flex {
	margin-bottom: 10px;
}

.mini-cart-item-details p .property-label {
	color: #bfbfbf;
	font-weight: 400;
}

.search-cart .h_wrap_cart .cart_popup figure {
	width: 99px;
	height: 99px;
	box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
	border-radius: 28px;
	overflow: hidden;
	margin-right: 15px;
}

.search-cart .h_wrap_cart .cart_popup .info {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-moz-box-flex: 1;
	-moz-flex: 1;
	-ms-flex: 1;
	flex: 1;
	font-size: 14px;
	line-height: 1.25;
	color: #bfbfbf;
	font-family: "Proxima Nova", sans-serif;
	padding-bottom: 20px;
}

.search-cart .h_wrap_cart .cart_popup .info strong {
	color: #4F4F4F;
	font-family: "Proxima Nova", sans-serif;
}

.search-cart .h_wrap_cart .cart_popup .info .cp_title {
	text-transform: uppercase;
	color: #4F4F4F;
	font-family: "DIN Condensed", sans-serif;
	font-size: 20px;
	letter-spacing: 0.02em;
}

.search-cart .h_wrap_cart .cart_popup .info .cp_price .money {
	margin-top: 10px;
	font-size: 20px;
	font-weight: 300;
	color: #4F4F4F;
	display: block;
}

.search-cart .h_wrap_cart .cart_popup .info .cp_price span {
	text-transform: uppercase;
	font-size: 18px;
}

.search-cart .h_wrap_cart .cart_popup .btn {
	font-size: 14px;
	text-transform: initial;
}

.search-cart .h_wrap_cart .cart_popup .btn.transparent {
	border: none;
}

.sub_menu {
	display: none;
	background-color: #f6f6f6;
	z-index: 2;
	position: absolute;
	top: 100%;
	left: 0;
}

.mainMenu>ul>li:hover>a {
	color: #000;
	font-weight: 600;
}

@media screen and (min-width: 1025px) {
	.sub_menu {
		position: absolute;
		left: 50%;
		-webkit-transform: translate(-50%, 0);
		transform: translate(-50%, 0);
		transform: translate(-50%, 0);
		top: 94px;
	}
}

@media screen and (max-width: 1024px) {
	.sub_menu {
		width: 100%;
		padding: 20px;
		text-align: left;
	}
}

.sub_menu>* {
	display: inline-block;
	vertical-align: middle;
}

.sub_menu figure {
	position: relative;
}

@media screen and (max-width: 1024px) {
	.sub_menu figure {
		display: none !important;
	}
}

.sub_menu figure:after {
	content: '';
	background: linear-gradient(180deg, rgba(236, 239, 242, 0) 0.52%, #ECEFF2 25%, rgba(232, 236, 239, 0) 100%);
	height: 338px;
	width: 338px;
	position: absolute;
	top: 50%;
	-webkit-transform: translate(0, -50%);
	-moztransform: translate(0, -50%);
	transform: translate(0, -50%);
	border-radius: 50%;
}

.sub_menu figure img {
	position: relative;
	z-index: 1;
}

.sub_menu .menu-item-content {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-moz-box-flex: 1;
	-moz-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

@media screen and (min-width: 1025px) {
	.sub_menu .menu-item-content {
		padding: 55px;
	}
}

.sub_menu .menu-item-content .title-list {
	font-size: 18px;
	margin-bottom: 0px;
	font-weight: bold;
    text-transform: uppercase;
    color: #4f4f4f;
}

.sub_menu .menu-item-content h2 {
	font-size: 40px;
	font-weight: bold;
	font-family: "DIN Condensed", sans-serif;
}

.sub_menu .menu-item-content a {
	font-size: 16px;
}

.sub_menu .menu-item-content a:hover {
	text-decoration: underline;
}

.sub_menu .menu-item-content h4 {
    font-size: 18px;
    color: #4f4f4f;
    text-transform: uppercase;
    font-weight: bold;
}

@media screen and (max-width: 1024px) {
	.sub_menu .menu-item-content h4 {
		display: none;
	}
}

.sub_menu .menu-item-content p {
	font-size: 17px;
}

@media screen and (max-width: 1024px) {
	.sub_menu .menu-item-content p {
		display: none;
	}
}

.sub_menu .btn {
	font-size: 18px;
	min-width: 223px;
	text-transform: initial;
}

.sub_menu.shop_sub_menu figure {
	width: 318px;
}

.sub_menu.shop_sub_menu .menu-item-content {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-moz-box-flex: 1;
	-moz-flex: 1;
	-ms-flex: 1;
	flex: 1;
	padding: 55px;
}

@media screen and (max-width: 1024px) {
	.sub_menu.shop_sub_menu .menu-item-content {
		padding: 0;
	}
}

.sub_menu.shop_sub_menu .menu-item-content .flex {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	-webkit-justify-content: flex-start;
	-moz-justify-content: flex-start;
	justify-content: flex-start;
	margin-bottom: 40px;
}

@media screen and (max-width: 1024px) {
	.sub_menu.shop_sub_menu .menu-item-content .flex {
		-webkit-flex-wrap: wrap;
		-moz-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
}

.sub_menu.shop_sub_menu .menu-item-content ul {
	margin-right: 80px;
	min-width: 125px;
}

@media screen and (max-width: 1024px) {
	.sub_menu.shop_sub_menu .menu-item-content ul {
		margin-right: 60px;
		margin-bottom: 20px;
	}
}

@media screen and (min-width: 1025px) {
	.sub_menu.customize_sub_menu {
		width: 770px;
	}
}

.sub_menu.customize_sub_menu figure {
	width: 210px;
}

.sub_menu.customize_sub_menu figure:after {
	height: 225px;
	width: 225px;
}

.sub_menu.customize_sub_menu .menu-item-content ul {
	display: inline-block;
	vertical-align: top;
	margin-right: 40px;
}

@media screen and (max-width: 1024px) {
	.sub_menu.customize_sub_menu .menu-item-content ul {
		margin-bottom: 20px;
	}
}

.sub_menu.customize_sub_menu .menu-item-content div {
	display: inline-block;
	vertical-align: top;
}

.sub_menu.customize_sub_menu .menu-item-content div .title-list {
	display: block;
}

.sub_menu.about_sub_menu {
	-webkit-box-align: start;
	-ms-flex-align: start;
	-webkit-align-items: flex-start;
	-moz-align-items: flex-start;
	align-items: flex-start;
}

@media screen and (min-width: 1025px) {
	.sub_menu.about_sub_menu {
		width: 645px;
		padding: 60px;
	}
}

.sub_menu.about_sub_menu .menu-item-content {
	padding: 0;
}

.sub_menu.about_sub_menu figure {
	margin-right: 60px;
}

.sub_menu.about_sub_menu ul {
	padding: 0;
}

.sub_menu.about_sub_menu ul:first-of-type {
	margin-bottom: 20px;
}

@media screen and (min-width: 1025px) {
	.sub_menu.about_sub_menu ul:first-of-type {
		margin-bottom: 55px;
	}
}


/*Home*/

.section-slideshow .home_top_slider1 {
	height: 701px;
}

.home_top_slider1 {
	height: 699px;
}

@media screen and (min-width: 1025px) {
	.home_top_slider1 {
		overflow: visible;
	}
}

.home_top_slider1 h2 {
	font-size: 65px;
	line-height: 100%;
	color: #000000;
	font-family: "DIN Condensed", sans-serif;
	text-transform: uppercase;
	margin-bottom: 22px;
}

@media screen and (max-width: 1024px) {
	.home_top_slider1 h2 {
		font-size: 35px;
	}
}

.home_top_slider1 .row_1280 {
	height: 100%;
	padding-top: 221px;
	z-index: 1;
}

@media screen and (max-width: 1024px) {
	.home_top_slider1 .row_1280 {
		padding: 30px 0 20px;
		padding-top: 221px;
	}
}

.home_top_slider1 .row_1280 .btn {
	font-size: 16px;
	text-transform: initial;
	z-index: 5;
}

.home_top_slider1 .row_1280:after {
	content: '';
	background: linear-gradient(180deg, rgba(236, 239, 242, 0) 0.52%, #ECEFF2 25%, rgba(232, 236, 239, 0) 100%);
	width: 540px;
	height: 540px;
	top: 0;
	right: 0;
	border-radius: 50%;
	position: absolute;
}
.home_cont_row .btn-text-center {
    margin: 0 auto;
    display: block;
    width: max-content;
}
.home_cont_row {
    background-color: #dad4cf;
    padding-top: 40px;
    padding-bottom: 40px;
}



@media screen and (max-width: 1024px) {
	.home_top_slider1 .row_1280:after {
		height: 332px;
		width: 332px;
		position: absolute;
		left: 50%;
		-webkit-transform: translate(-50%, 0);
		transform: translate(-50%, 0);
		transform: translate(-50%, 0);
		top: 230px;
	}
	.home_top_slider1 .row_1280:after {
		background: none;
	}
}

.home_top_slider1 .swiper-slide .big_img {
	position: absolute;
	bottom: 0;
	right: 10px;
	z-index: 2;
	top: 0;
	height: 615px;
}

.home_top_slider1 .swiper-slide .big_img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

@media screen and (max-width: 1024px) {
	.home_top_slider1 .swiper-slide .big_img {
		right: 0;
	}
}

@media screen and (max-width: 767px) {
	.home_top_slider1 .swiper-slide .big_img {
		height: auto;
		top: auto;
	}
}

@media screen and (max-width: 767px) {
	.home_top_slider1 .swiper-slide .big_img img {
		max-height: 457px;
		object-position: inherit;
		height: inherit;
		object-fit: inherit;
		width: inherit;
	}
}

@media(max-width:575px) {
	.home_top_slider1 .swiper-slide .big_img img {
		max-height: 345px;
	}
	.home_top_slider1 .swiper-slide:nth-child(3) .big_img {
		right: 0px;
	}
}


/*   .home_top_slider1 .swiper-slide:nth-child(5) .big_img {
    right: -120px; } */

.home_top_slider1 .swiper-button-next,
.home_top_slider1 .swiper-button-prev {
	color: #fff;
	font-size: 13px;
	line-height: 39px;
	height: 42px;
	width: 42px;
	background-color: #7e594e;
	border: 2px solid #7e594e;
	border-radius: 50%;
	text-align: center;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	cursor: pointer;
	margin-top: 0;
}

@media screen and (max-width: 1024px) {
/* 	.home_top_slider1 .swiper-button-next,
	.home_top_slider1 .swiper-button-prev {
		height: 30px;
		width: 30px;
		line-height: 26px;
	} */
}

.home_top_slider1 .swiper-button-next:after,
.home_top_slider1 .swiper-button-prev:after {
	font-size: inherit;
}

@media screen and (max-width: 1024px) {
	.home_top_slider1 .swiper-button-next:after,
	.home_top_slider1 .swiper-button-prev:after {
		font-size: 12px;
	}
}

.home_top_slider1 .swiper-button-next:hover,
.home_top_slider1 .swiper-button-prev:hover {
	box-shadow: 0px 5px 20px rgba(228, 135, 135, 0.1);
}

.home_top_slider1 .swiper-button-next.swiper-button-disabled,
.home_top_slider1 .swiper-button-prev.swiper-button-disabled {
	color: #e5e5e5;
	border-color: #e5e5e5;
	opacity: 1;
}

.home_top_slider1 .swiper-pagination {
	width: auto;
	margin: 0 21px;
	font-family: "DIN Condensed", sans-serif;
	font-size: 22px;
	line-height: 100%;
	text-align: center;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #BFBFBF;
}

@media screen and (max-width: 1024px) {
	.home_top_slider1 .swiper-pagination {
		margin: 0 6px;
	}
}

.home_top_slider1 .swiper-pagination .swiper-pagination-current {
	opacity: 1;
	color: #000000;
}

.home_top_slider1 .nav_slider {
	margin-top: 30px;
}

@media screen and (max-width: 1024px) {
	.home_top_slider1 .nav_slider {
		margin-top: 10px;
	}
}

.home_top_slider1 .nav_slider>* {
	position: relative;
	top: auto;
	bottom: auto;
	right: auto;
	left: auto;
	display: inline-block;
}

.home_top_slider1 .small_box {
	background-color: #ffffff;
	padding: 12px 14px 15px 20px;
	width: 420px;
	border-radius: 28px;
	position: absolute;
	bottom: 87px;
	right: 7px;
	z-index: 4;
}

@media screen and (max-width: 1024px) {
	.home_top_slider1 .small_box {
		width: 212px;
		right: auto;
		left: 0;
		box-shadow: 0 0px 10px rgba(0, 0, 0, 0.1);
	}
}

.home_top_slider1 .small_box figure {
	/*width: 113px;*/
	border-radius: 25%;
	overflow: hidden;
	margin-right: 23px;
}
.home_top_slider1 .small_box figure img {
max-width: 100%;
    height: auto;
    width: auto;
    display: block;
    margin: 0;
}

@media screen and (max-width: 1024px) {
	.home_top_slider1 .small_box figure {
		display: none;
	}
}

.home_top_slider1 .small_box .info {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-moz-box-flex: 1;
	-moz-flex: 1;
	-ms-flex: 1;
	flex: 1;
	font-size: 14px;
}

.home_top_slider1 .small_box .info h3 {
	font-family: "DIN Condensed", sans-serif;
	color: #000000;
	font-size: 36px;
	line-height: 100%;
	text-transform: uppercase;
}

@media screen and (max-width: 1024px) {
	.home_top_slider1 .small_box .info h3 {
		font-size: 24px;
	}
}

.home_top_slider1 .small_box .info a {
	font-size: 18px;
}

@media screen and (max-width: 1024px) {
	.home_top_slider1 .small_box .info a {
		font-size: 14px;
	}
}

.home_customize {
	background-repeat: no-repeat;
	background-position: 0 90%;
	background-size: cover;
	color: #000;
	position: relative;
	z-index: 9;
	min-height: 365px;
	display: flex;
	align-items: center;
}

@media screen and (max-width: 1024px) {
	.home_customize {
		background-position: 0 0;
		min-height: 350px;
	}
}

@media screen and (max-width: 480px) {
	.home_customize {
		background-position-x: 75%;
	}
}

.home_customize .info {
	max-width: 387px;
	margin-left: auto;
}

@media screen and (max-width: 1024px) {
	.home_customize .info {
		margin: 0;
	}
}

.home_customize .smallTitle {
	text-transform: uppercase;
	margin-bottom: 10px;
	display: block;
}

.home_customize h3 {
	font-family: "DIN Condensed", sans-serif;
	font-size: 38px;
	text-transform: uppercase;
	line-height: 100%;
	margin-bottom: 10px;
	color: #000;
}

.home_customize p {
	font-size: 14px;
}

.home_customize .btn {
	text-transform: inherit;
	font-size: 18px;
}

.home_blog {
    background: #dad4cf;
    border-bottom: 1px solid #dad4cf;
    padding: 86px 0 74px;
    font-size: 14px;
    line-height: 125%;
}
.home_blog a.btn.transparent {
    background-color: transparent;
}
.home_blog a.btn.transparent:hover {
    background: #4f4f4f;
}

@media (max-width: 768px) {
	.home_blog {
		padding: 40px 0;
	}
	.home_blog>div {
		-webkit-box-direction: reverse;
		-webkit-box-orient: vertical;
		-webkit-flex-direction: column-reverse;
		-moz-flex-direction: column-reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
	}
}

.home_blog .flex>* {
	width: 43.4%;
}

@media (max-width: 768px) {
	.home_blog .flex>* {
		width: 100%;
	}
}

.home_blog figure {
	overflow: hidden;
	border-radius: 28px;
}

@media (max-width: 768px) {
	.home_blog figure {
		margin-bottom: 35px;
	}
}

.home_blog .smallTitle {
	font-size: 18px;
	display: block;
	margin-bottom: 30px;
	color: #000000;
}

.home_blog h3 {
	font-size: 35px;
	line-height: 100%;
	color: #000000;
	margin-bottom: 30px;
}

@media (max-width: 768px) {
	.home_blog h3 {
		font-size: 30px;
	}
}

.home_blog time {
	display: block;
	font-size: 12px;
	margin-bottom: 30px;
}

.home_blog .btn {
	font-size: 18px;
	text-transform: initial;
	min-width: 223px;
}

.home_testimonial .testiminial_text p {
	white-space: break-spaces;
  color: #fff;
}

.home_testimonial {
	/*   background-color: #ffffff; */
	padding: 103px 0 93px;
}

@media screen and (max-width: 1024px) {
	.home_testimonial {
		padding: 38px 0;
	}
}

.home_testimonial figure {
	width: 173px;
	height: 173px;
	border-radius: 50%;
	overflow: hidden;
	margin-right: 50px;
}

@media screen and (max-width: 1024px) {
	.home_testimonial figure {
		height: 76px;
		width: 76px;
		margin-right: 20px;
	}
}

.home_testimonial .testiminial_text {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-moz-box-flex: 1;
	-moz-flex: 1;
	-ms-flex: 1;
	flex: 1;
	font-size: 30px;
	font-weight: 300;
	line-height: 125%;
	padding-bottom: 15px;
}

@media screen and (max-width: 1024px) {
	.home_testimonial .testiminial_text {
		font-size: 24px;
	}
}

.home_testimonial .author {
	font-size: 18px;
	font-weight: 600;
	line-height: 1.1;
	color: #fff;
}

@media screen and (max-width: 1024px) {
	.home_testimonial .author {
		font-size: 14px;
	}
}

.home_shop_cats .side_prod {
	width: 33%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	-moz-align-items: center;
	align-items: center;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	-webkit-justify-content: flex-end;
	-moz-justify-content: flex-end;
	justify-content: flex-end;
	color: #ffffff;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
}

.home_shop_cats .side_prod div {
	margin-right: 70px;
}

.home_shop_cats .side_prod h4 {
	text-transform: uppercase;
	font-size: 48px;
	font-weight: 700;
	font-family: "DIN Condensed", sans-serif;
	letter-spacing: 0.04em;
}

@media screen and (max-width: 1024px) {
	.home_shop_cats .side_prod {
		display: none;
	}
}

.home_shop_cats .over_row {
	position: relative;
}

@media screen and (min-width: 1024px) {
	.home_shop_cats .over_row {
		padding-left: 33%;
	}
}

.home_cats_row {
	padding: 50px 0 0;
	border: none;
}

@media screen and (max-width: 1024px) {
	.home_cats_row {
		padding: 30px 0;
	}
}

@media screen and (max-width: 767px) {
	.home_cats_row .flex {
		-webkit-flex-wrap: wrap;
		-moz-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		margin: 0 -10px;
	}
}

.home_cats_row.two_col {
	padding: 40px 0 35px;
	border-bottom: 1px solid #E5E5E5;
}

@media screen and (max-width: 1024px) {
	.home_cats_row.two_col {
		padding: 25px 0 20px;
	}
}

.home_cats_row.two_col:first-of-type {
	border-top: 1px solid #E5E5E5;
}

.home_cats_row.two_col:nth-child(2) .home_single_cat:nth-child(odd) {
	border-radius: 28px;
}

@media screen and (min-width: 1025px) {
	.home_cats_row.two_col:nth-child(2) .home_single_cat:nth-child(odd) {
		border: 1px solid #E5E5E5;
	}
}

.home_cats_row.two_col:nth-child(2) .home_single_cat:nth-child(even) {
	border: none;
}

.home_cats_row .alc {
	margin-bottom: 15px;
}

.home_cats_row h3 {
	font-size: 30px;
	line-height: 100%;
	font-weight: 300;
	padding-left: 30px;
}

@media screen and (max-width: 1024px) {
	.home_cats_row h3 {
		font-size: 24px;
		padding-left: 0;
	}
}

@media screen and (max-width: 1024px) {
	.home_cats_row .btn {
		text-transform: initial;
	}
}

.home_single_cat {
	text-align: center;
	font-size: 14px;
	line-height: 125%;
	padding: 10px;
	width: 50%;
}

.home_single_cont {
	text-align: center;
	font-size: 14px;
	line-height: 125%;
	width: 50%;
}
.home_cont_row .row {
    width: 1150px;
}
.home_single_cont p {
    padding-left: 30px;
    padding-right: 30px;
}

.cont_main_slide .slick-dots {
	display: block;
	position: absolute;
	transform: translateX(-50%);
	left: 50%;
	margin: 0;
	bottom: 3px;
	list-style: none;
}

.cont_main_slide .slick-dots li {
    display: inline-block;
	margin-right: 10px;
}
.cont_main_slide .slick-dots button {
    width: 4px;
    height: 1px;
    border: 1px solid #7e594e;
    border-radius: 100%;
    background-color: transparent;
    text-indent: -999999px;
    padding: 4px;  
}	
.cont_main_slide  .slick-dots .slick-active button{
    background-color: #7e594e;
}

.home-review-testi {
    background: #4c544c;
}
.home-review-testi .swiper-button-prev, .swiper-button-next {
    margin-top: 30px !important;
}
.home-review-testi .swiper-button-prev, .swiper-container-rtl .swiper-button-next {
    right:45px !important;
}
@media screen and (max-width: 1024px) {
.home-review-testi .swiper-slide {
    margin-top: 45px;
}
  .home-review-testi .testiminial_text {
     margin-top: 0px; 
}
}
@media screen and (max-width: 891px) {
.home_single_cont p {
    margin-bottom: 20px;
}
 .home_cont_row .btn{
    margin-top: 20px;
}
  .home_single_cont h4 {
    margin-top: 5px;
}
}
@media screen and (min-width: 1025px) {
	.home_single_cat {
		padding: 34px 28px 28px;
		width: auto;
	}
    .home_single_cont {
		padding: 0px 0px 15px 35px;
		width: auto;
	}
}

@media screen and (min-width: 1025px) {
	.home_single_cat:nth-child(even) {
		border: 1px solid #E5E5E5;
		border-radius: 28px;
	}
  
}

.home_single_cat>*:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
}

.home_single_cat figure {
	overflow: hidden;
	display: inline-block;
	border-radius: 28px;
	margin-bottom: 38px;
}

.home_single_cat h4 {
	font-family: "DIN Condensed", sans-serif;
	font-size: 24px;
	line-height: 100%;
	text-align: center;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #4F4F4F;
	margin-bottom: 6px;
}
.home_single_cont h4 {
    font-family: "DIN Condensed", sans-serif;
    font-size: 34px;
    line-height: 100%;
    text-align: center;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 15px;
}

.home_single_cat h4 a {
	color: inherit;
}

.home_single_cat h4 a:hover {
	color: #7e594e;
}


/*Cart*/

.cart_content h1 {
	font-size: 30px;
	line-height: 100%;
	font-weight: 300;
	margin-bottom: 45px;
}

.cart_content article {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-moz-box-flex: 1;
	-moz-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.cart_content article .single_cart_item {
	border: 2px solid #E5E5E5;
	border-radius: 28px;
	padding: 22px 35px 22px 22px;
	margin-bottom: 35px;
}

.cart_content article .title_prod a {
	color: #4e4e4e;
}

.cart_content article .cart_prod_item:not(:last-of-type) {
	margin-bottom: 20px;
}

.cart_content article .cart_prod_item>div {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-moz-box-flex: 1;
	-moz-flex: 1;
	-ms-flex: 1;
	flex: 1;
	padding-top: 30px;
}

.cart_content article .title_prod {
	font-family: "DIN Condensed", sans-serif;
	font-size: 24px;
	line-height: 100%;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.cart_content article mark {
	display: block;
	font-size: 12px;
	line-height: 1.25;
	color: #8e8e8e;
	margin-bottom: 20px;
}

.cart_content article .cart_price {
	font-size: 24px;
	font-weight: 600;
}

.cart_content article .cart_price span {
	font-size: 14px;
	text-transform: uppercase;
}

.cart_content article figure {
	border-radius: 28px;
	overflow: hidden;
	box-shadow: 0px 5px 20px rgb(124, 131, 139, 0.68);
	margin-right: 0;
	display: inline-block;
	width: 45%;
}

.cart_content article figure img {
	width: 100%;
}

.left-div {
	padding-top: 30px;
	width: 54%;
	display: inline-block;
	vertical-align: top;
	padding-left: 55px;
}

.pd_title {
	padding-right: 10px;
}

.cart_content article .cart_prod_desc {
	font-size: 14px;
	line-height: 1.25;
	margin-bottom: 20px;
}

.cart_content article .cart_prod_desc strong {
	font-weight: 600;
}

.cart_content article .spec_req span {
	font-weight: 700;
	margin-right: 2px;
}

.cart_price_new {
	font-size: 14px;
	font-weight: 700;
}

.cart_price_new span.money {
	font-weight: normal;
}

.cart_content article .spec_req {
	/*     font-family: "DIN Condensed", sans-serif; */
	font-size: 14px;
	line-height: 1.25;
	color: #4F4F4F;
	margin-bottom: 15px;
}

.cart_content article .wrap_btns {
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: start;
	-ms-flex-align: start;
	-webkit-align-items: flex-start;
	-moz-align-items: flex-start;
	align-items: flex-start;
}

.cart_content article .wrap_btns .btn {
	text-transform: initial;
}

.cart_content article .wrap_btns .btn:not(:last-of-type) {
	margin: 0 5px 20px 0;
}

tr td,
tr th {
	padding: 20px 30px;
}

.cart_content article .wrap_btns a {
	display: inline-flex;
	padding: 10px 26px;
}

.cart_content article textarea {
	display: block;
	border: 2px solid #E5E5E5;
	border-radius: 25px;
	background: #ffffff;
	max-width: 350px;
	min-height: 65px;
	font-weight: 600;
	margin-left: auto;
	resize: none;
	padding: 15px 25px;
}

.cart_content article textarea::placeholder {
	font-weight: 600;
	color: #bfbfbf;
}

.cart_content article textarea:focus,
.contact-us-page textarea:focus,
.contact-us-page input[type="text"]:focus,
.contact-us-page input[type="email"]:focus {
	border-color: #7e594e;
	outline: none;
}

.cart_content aside {
	width: 350px;
	border-radius: 28px;
	border: 2px solid #E5E5E5;
	margin-left: 60px;
	padding: 40px 45px;
	text-align: center;
}

.cart_content aside h3 {
	font-size: 18px;
	font-weight: 600;
	line-height: 100%;
	margin-bottom: 40px;
}

.cart_content aside .btn {
	text-transform: initial;
}

.cart_content aside mark {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: #bfbfbf;
	margin-bottom: 5px;
}

.cart_content aside .selectric-wrapper {
	margin-bottom: 15px;
}

.cart_content aside .selectric {
	background: #FFFFFF;
	border: 2px solid #E5E5E5;
	box-sizing: border-box;
	box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.05);
	border-radius: 35px;
	text-align: center;
	max-width: 290px;
	margin: 0 auto;
	cursor: pointer;
}

.cart_content aside .selectric .label {
	font-family: Proxima Nova;
	font-weight: 700;
	font-size: 18px;
	text-align: center;
	color: #000000;
}

.cart_content aside .selectric .button {
	background-color: transparent;
	color: #7e594e;
	right: 30px;
	top: 3px;
}

.cart_content aside .selectric .button:after {
	border: 6px solid transparent;
	border-top-color: #7e594e;
}

.cart_content aside .selectric-items {
	top: 192px;
	background: #FFFFFF;
	border: 2px solid #E5E5E5;
	box-sizing: border-box;
	box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.05);
	left: 50%;
	margin-right: -50%;
	transform: translate(-50%, -50%);
}

.cart_content aside input.zip {
	height: 41px;
	border: 2px solid #E5E5E5;
	border-radius: 25px;
	font-weight: 600;
	margin-bottom: 44px;
	color: #000;
	margin-top: 20px;
}

.cart_content aside input.zip::placeholder {
	text-align: center;
	font-size: 14px;
	font-weight: 600;
	color: #bfbfbf;
}

.cart_content aside input.zip:focus {
	border-color: #7e594e;
}

.cart_content aside .total {
	margin-top: 45px;
}

.cart_content aside .total .price {
	font-size: 35px;
	line-height: 1.25;
}

.cart_content aside .total sup {
	font-size: 14px;
}

.cart_content aside .aside_wrap_btns {
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.cart_content aside .aside_wrap_btns>* {
	-webkit-flex-basis: 49%;
	-moz-flex-basis: 49%;
	-ms-flex-preferred-size: 49%;
	flex-basis: 49%;
	margin-bottom: 15px;
	padding: 16px 0;
}

.cart_content aside .aside_wrap_btns>* img {
	margin: 0 auto;
}

.cart_content aside .btn.checkout {
	background: #7e594e;
	color: #fff;
	width: 100%;
	border-radius: 35px;
	font-family: "Proxima Nova", sans-serif;
	font-size: 15px;
	display: block;
	margin-bottom: 15px;
	transition: 0.5s ease-in-out 0.5s ease;
}

.cart_content aside .btn.checkout:hover {
	background-color: #ffffff;
	color: #7e594e;
	
}

.cart-form {
	margin-bottom: 0;
}

.cart_content aside .aside_wrap_btns div {
	margin-bottom: 0;
	padding-bottom: 0;
}

#navToggle {
	width: 29px;
	height: 23px;
	position: relative;
	-webkit-transform: 0deg;
	-moz-transform: 0deg;
	-ms-transform: 0deg;
	-o-transform: 0deg;
	transform: 0deg;
	-webkit-transition: 0.5s ease-in-out 0.5s ease;
	-moz-transition: 0.5s ease-in-out 0.5s ease;
	-ms-transition: 0.5s ease-in-out 0.5s ease;
	-o-transition: 0.5s ease-in-out 0.5s ease;
	transition: 0.5s ease-in-out 0.5s ease;
	cursor: pointer;
}

#navToggle span {
	display: block;
	position: absolute;
	height: 2px;
	width: 100%;
	background: #4F4F4F;
	border-radius: 2px;
	opacity: 1;
	left: 0;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: 0.25s ease-in-out 0.5s ease;
	-moz-transition: 0.25s ease-in-out 0.5s ease;
	-ms-transition: 0.25s ease-in-out 0.5s ease;
	-o-transition: 0.25s ease-in-out 0.5s ease;
	transition: 0.25s ease-in-out 0.5s ease;
}

#navToggle span:nth-child(1) {
	top: 0;
	-webkit-transform-origin: left center;
	-moz-transform-origin: left center;
	-ms-transform-origin: left center;
	transform-origin: left center;
}

#navToggle span:nth-child(2) {
	top: 10px;
	-webkit-transform-origin: left center;
	-moz-transform-origin: left center;
	-ms-transform-origin: left center;
	transform-origin: left center;
}

#navToggle span:nth-child(3) {
	top: 20px;
	-webkit-transform-origin: left center;
	-moz-transform-origin: left center;
	-ms-transform-origin: left center;
	transform-origin: left center;
}

#navToggle.open:before {
	content: '';
	position: absolute;
	left: -22px;
	top: -30px;
	width: 1px;
	height: 80px;
}


/*     background: #e5e5e5; } */

#navToggle.open:after {
	content: '';
	background: #ffffff;
	height: 1px;
	width: 70px;
	bottom: -28px;
	left: -21px;
	position: absolute;
}

#navToggle.open span:nth-child(1) {
	top: 0;
	left: 4px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}

#navToggle.open span:nth-child(2) {
	width: 0%;
	opacity: 0;
}

#navToggle.open span:nth-child(3) {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
	top: 21px;
	left: 4px;
}

.mob_header {
	display: none;
	position: relative;
	background-color: #ffffff;
}

@media screen and (max-width: 1024px) {
	.mob_header {
		display: block;
	}
}

.mob_header .hide {
	display: none;
	background: #ffffff;
	top: 100%;
	left: 0;
	right: 0;
	position: absolute;
	z-index: 100;
}

.mob_header .top_mob_sec {
	padding: 18px 20px;
	border-bottom: 1px solid #E5E5E5;
}

.mob_header .middle_mob_sec {
	font-size: 14px;
	padding: 25px 0;
	border-bottom: 1px solid #E5E5E5;
}

.mob_header .search-cart {
	padding: 20px 0;
}

.mob_header .search-cart>.alc {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	-webkit-justify-content: flex-start;
	-moz-justify-content: flex-start;
	justify-content: flex-start;
}


/*# sourceMappingURL=style.css.map */


/*------------------------ 07/11/2019------------------------- */

.left-part form input {
	background: #FFFFFF !important;
	border: 2px solid #E5E5E5 !important;
	box-sizing: border-box !important;
	border-radius: 35px !important;
	height: 50px !important;
	width: 242px!importannt;
	margin-right: 20px !important;
}

button.ResetElements__Button-sc-8e6zl9-2.Button__FormStyledButton-p2mbjt-0.needsclick.undefined.kanVAP {
	height: 51px;
	padding: 0px 15px 0 15px!important;
	display: flex!important;
	box-shadow: 0px 5px 20px rgba(228, 135, 135, 0.25);
	border-radius: 50px!important;
	text-transform: uppercase;
	color: #ffffff;
	border: none;
	outline: 0;
	background: #7e594e!important;
	font-weight: normal!important;
	align-items: center;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-ms-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

button.ResetElements__Button-sc-8e6zl9-2.Button__FormStyledButton-p2mbjt-0.needsclick.undefined.kanVAP:hover {
	background-color: #ffffff!important;
	color: #7e594e;
	box-shadow: 0px 5px 20px rgba(228, 135, 135, 0.25);
}

.ResetElements__Div-sc-8e6zl9-0.FormComponent__StyledFormComponentWrapper-e0xun6-0.needsclick.undefined.bYbfhI,
form.ResetElements__Form-sc-8e6zl9-1.klaviyo-form-version-cid_1.View__FormView-sc-1ou3cq2-0.needsclick.klaviyo-form-version-cid_1.fzluUf {
	padding: 0;
}

.ResetElements__Div-sc-8e6zl9-0.FormComponent__StyledFormComponentWrapper-e0xun6-0.needsclick.undefined.kwGIvD {
	padding: 0;
}



.swiper-slide p {
	margin-bottom: 0;
}

header {
	border-bottom: 1px solid #E5E5E5;
}

p {
	margin-bottom: 0;
}

.mini-cart-item-details p {
	margin: 0;
	padding: 0;
	font-family: "Proxima Nova", sans-serif;
	font-size: 14px;
}

.mini-cart-item-details p span {
	font-weight: 700;
	color: #4F4F4F;
}

.collection-sorting {
	padding: 0;
	border: none;
}

.top-filter .selectric {
	background: transparent;
	border: none;
}

.top-filter .selectric .button {
	background: transparent;
}

.top-filter .selectric span.label {
	font: 400 18px/1.5 "Proxima Nova", sans-serif;
	color: #4F4F4F;
}

.select-wrapper:after {
	display: none;
}

.currency-wrapper .select-wrapper select {
	position: static;
	opacity: 1;
	font-size: 14px;
	border: none;
	color: #444;
	padding-right: 15px;
	background: transparent;
}

.currency-switcher {
	position: relative;
	padding: 0 0px 0 10px;
}

.currency-switcher:after {
	content: "\f0dd";
	position: absolute;
	display: block;
	font-family: fontawesome;
	right: 0;
	top: 2px;
	font-size: 15px;
	color: #7e594e;
	pointer-events: none;
}

#address_province_container .select-wrapper {
	height: 40px;
	background: #FFFFFF;
	border: 2px solid #E5E5E5;
	box-sizing: border-box;
	box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.05);
	border-radius: 35px;
}

.country-select .select-wrapper:after,
.province-select .select-wrapper:after {
	content: "\f0dd";
	position: absolute;
	display: block;
	font-family: fontawesome;
	right: 10%;
	top: 20%;
	font-size: 18px;
	color: #7e594e;
	pointer-events: none;
	z-index: 2;
}

.calculator-aside label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: #bfbfbf;
	margin-bottom: 5px;
	margin-top: 15px;
}

input.get-rates.secondary:hover {
	background: #fff !important;
    color: #7e594e !important;
}

input.get-rates.secondary {
	background: #7e594e;
	border-radius: 50px;
	color: #fff;
	border: 1px solid #7e594e;
	font-size: 18px;
	padding: 18px 35px 18px 37px;
}

.top-filter .selectric .button:after {
	content: "\f0d7";
	color: #7e594e;
	font-size: 20px;
	font-family: fontawesome;
	position: absolute;
	display: block;
	left: 0;
	border: none;
}

.top-filter .selectric .button {
	font-size: 0;
	width: inherit;
	height: inherit;
}

.top-filter .selectric .label {
	margin: 0 5px 0 0px;
}

.filter-by .filter-list>li label a {
	color: #7e594e;
}

.filter-by .filter-list>li label a.active {
	color: #7e594e;
	font-weight: 600;
}

ul.filter-list.flex {
	margin-bottom: 0;
}

.products .product span.money {
	font: 400 18px/1.5 "Proxima Nova", sans-serif;
	color: #4F4F4F;
}

.mini-cart-item-details {
	width: 50%;
	margin-left: 10px;
}

.quick-shop .product-details-wrapper .select-wrapper {
	padding: 5px 10px;
}

.swiper-container {
	z-index: 0;
}

.selectric-items li {
	color: #000;
	font-size: 14px;
}

.collection-sorting .selectric-items {
	position: absolute;
	top: -50%;
	left: -45px;
	border: none;
	z-index: -1;
	box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
	border-radius: 25px;
	background: white;
	padding: 65px 32px 10px 36px;
	width: 210px!important;
	height: inherit!important;
}

.collection-sorting .selectric-items li.highlighted {
	background: #ffffff;
}

.collection-sorting .select-wrapper {
	border: none;
	padding: 0;
}

.collection-sorting .select-wrapper .selected-text {
	font-size: 17px;
	color: #4F4F4F;
}

.collection-sorting .selectric-items li:hover {
	background: #FFF;
}

.filter-by a.active .checkmark:after {
	content: "\f192";
	position: absolute;
	display: block;
	left: -2px;
	right: 0;
	margin: 0 auto;
	font-family: fontawesome;
	top: -7px;
	font-size: 16px;
}

input[type="submit"].button.secondary,
.cart-checkout.button,
.ca-btn {
	background: #7e594e;
	transition: all 0.4s ease;
	border-radius: 50px;
	font-family: "Proxima Nova", sans-serif;
	padding: 15px 40px;
}

input[type="submit"].button.secondary:hover,
.cart-checkout.button:hover,
.ca-btn:hover {
	background-color: #ffffff!important;
	color: #7e594e!important;
	
}

.cart-instructions textarea {
	display: block;
	border: 2px solid #E5E5E5;
	border-radius: 25px;
	background: #ffffff;
	max-width: 350px;
	min-height: 65px;
	font-weight: 600;
	margin-left: auto;
	resize: none;
	padding: 15px 25px;
}

.cart-instructions textarea:focus,
#giftWrappingExpandedInfo textarea {
	border-color: #7e594e;
	outline: none;
}

.product-options.Material .select-wrapper {
	padding: 6px 10px;
	text-align: center;
}

.swatch.clearfix {
	text-align: center;
	display: block;
	margin: 0 auto 0;
	padding-top: 30px;
	position: relative;
}

.same-divs-gift.CustomColor br {
	display: none;
}
.tab-content li a {
    color: #7e594e !important;
}
.size-chart-button {
	text-decoration: none;
	color: #7e594e;
	font-family: Proxima Nova;
	font-size: 14px;
	text-align: center;
	font-weight: 700;
	margin-bottom: 10px;
	display: block;
}

.product-options label {
	font-family: Proxima Nova;
	font-size: 14px;
	color: #BFBFBF;
	text-align: center;
	font-weight: 700;
	margin-bottom: 10px;
}

#product .right-part .product-options .selector-wrapper.Material {
	display: none;
}

.product-options .select-wrapper {
	background: #FFFFFF;
	border: 2px solid #E5E5E5;
	box-sizing: border-box;
	box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.05);
	border-radius: 35px;
	text-align: center;
	max-width: 290px;
	margin: 0 auto;
	cursor: pointer;
	color: #000000;
	position: relative;
}

.product-options .select-wrapper::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 10%;
	bottom: 0;
	margin: auto;
	width: 0;
	height: 0;
	border: 6px solid transparent;
	border-top-color: #7e594e;
	border-bottom: none;
}

.product-options .selector-wrapper {
	margin-bottom: 20px;
}

.product-options .select-wrapper .selected-text {
	font-size: 16px;
	font-weight: 700;
}

.size-chart {
	border: 1px #555 solid;
	background-color: #ffffff;
	padding: 20px;
	max-width: 800px;
	max-height: 800px;
	margin-left: auto;
	margin-right: auto;
}

.size-chart table {
	margin: 0 auto;
	text-align: center;
}

.size-chart table p {
	margin: 0 0 0 0;
}

.size-chart table h4 {
	margin: 0 0 0 0;
}

.size-chart tr td {
	padding: 10px;
}

.size-chart tr th {
	padding: 0 0 0 0;
}

#product_page .paging .sa_page {
	color: #000 !important;
}

#giftWrapping,
.same-divs-gift {
	padding: 40px 45px 40px 50px;
	border-bottom: 2px solid #E5E5E5;
}

.gift-left-img {
	width: 30%;
	display: inline-block;
	vertical-align: top;
}

.gift-right-img {
	width: 60%;
	display: inline-block;
	padding-left: 10px;
}

.gift-right-img p {
	font-size: 16px;
	color: #000000;
	margin-bottom: 13px;
	font-weight: 700;
	padding: 0;
	margin: 0;
}

.gift-right-img input:after {
	content: "";
	position: absolute;
	top: -1px;
	left: -1px;
	width: 14px;
	height: 14px;
	background: #FFFFFF;
	border: 2px solid #4F4F4F;
	box-sizing: border-box;
	border-radius: 50%;
}

input:-webkit-autofill {
	-webkit-box-shadow: 0 0 0px 1000px white inset;
}

.gift-right-img input:focus {
	outline: none;
}

.gift-right-img input {
	margin-right: 12px;
	border-radius: 50%;
	position: relative;
	background: #FFFFFF;
	border: 0;
	box-sizing: border-box;
	cursor: pointer;
	display: inline-block;
	width: 0;
	height: 0;
	top: -11px;
}

.gift-right-img input:checked::before {
	content: "";
	position: absolute;
	left: 3px;
	top: 2.5px;
	width: 6px;
	border-radius: 50%;
	height: 6px;
	background: #4F4F4F;
	z-index: 3;
}

.gift-right-img span {
	display: inline-block;
	font-family: Proxima Nova;
	font-size: 14px;
	color: #000000;
	font-weight: 700;
	cursor: pointer;
	margin-right: 8px;
}

.date-tim-main label,
.line-item-property__field label {
	display: block;
	text-align: center;
	font-family: Proxima Nova;
	font-size: 18px;
	font-weight: 700;
	color: #BFBFBF;
	margin-bottom: 20px;
}

.gift-left-img img {
	border-radius: 25px;
}


/* .inline-input-wrapper {
    text-align: center;
} */

#giftWrappingExpandedInfo span {
	font-family: Proxima Nova;
	font-size: 14px;
	display: block;
	color: #8E8E8E;
	margin-top: 10px;
}

#giftWrappingExpandedInfo textarea {
	padding: 8px 25px;
	background: #FFFFFF;
	border: 2px solid #E5E5E5;
	box-sizing: border-box;
	border-radius: 25px;
	min-height: 83px;
	color: #000;
}

.add-to-cart.btn-product {
	text-align: center;
	margin: 20px 0;
}

.inline-input-wrapper input[type="text"],
.line-item-property__field input {
	background: #FFFFFF;
	border: 2px solid #E5E5E5;
	box-sizing: border-box;
	border-radius: 25px;
	font-family: Proxima Nova;
	font-size: 14px;
	color: #000;
	font-weight: 700;
	margin: 0 auto;
	padding: 20px;
}

.quick-shop .inline-input-wrapper input[type="text"] {
	padding: 0px 5px;
}

.inline-input-wrapper input[type="text"]::placeholder {
	font-family: Proxima Nova;
	font-size: 14px;
	color: #BFBFBF;
}

.line-item-property__field {
	margin-top: 20px;
}

.add-to-cart.btn-product input {
	background: #7e594e;
	border: 1px solid #7e594e;
	border-radius: 50px;
	font-family: Proxima Nova;
	font-size: 16px;
	text-align: center;
	color: #FFFFFF;
	margin: 0 auto;
	position: relative;
	cursor: pointer;
	transition: all 0.5s ease;
	text-transform: capitalize;
}

.add-to-cart.btn-product input:hover {
    color: #7e594e;
    background: #fff;
}

body .ind_cnt {
	font-size: 15px;
	display: inline-block;
	text-align: left;
	width: inherit;
	margin-left: 5px;
}

.cart_content aside.calculator-aside {
	padding: 0;
	border: none;
	margin: 0;
}

.cart_content aside.calculator-aside #content {
	margin: 0;
	padding: 0;
}

.cart_content aside.calculator-aside {
	padding: 0;
	border: none;
	margin: 0;
	width: 100%;
}

.cart-shipping-calculator {
	padding: 0;
}

.country-select .select-wrapper select,
.province-select .select-wrapper select {
	background: #FFFFFF;
	border: 2px solid #E5E5E5;
	box-sizing: border-box;
	box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.05);
	border-radius: 35px!important;
	text-align: center;
	max-width: 290px;
	margin: 0 auto;
	cursor: pointer;
	opacity: 1;
	padding-left: 20px;
	font-weight: 700;
}

.country-select .select-wrapper,
.province-select .select-wrapper select {
	border: none;
	margin: 0 auto;
	display: block;
	font-size: 16px;
}

.get-rates.secondary {
	color: #ffffff;
	border: none;
	outline: 0;
	background: #7e594e;
	transition: all 0.4s ease;
	font-family: "Proxima Nova", sans-serif;
	font-size: 15px;
	border-radius: 50pc;
	padding: 15px 50px;
	text-transform: capitalize;
}

.get-rates.secondary:hover {
	background-color: #ffffff;
	color: #7e594e;
	
}

.page-height {
	min-height: calc(100vh - 63vh);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-flow: column;
	padding: 40px 0;
}

.cart-shipping-calculator-response ul li {
	text-align: left;
	list-style: decimal;
	font-size: 15px;
	margin-bottom: 20px;
	padding-left: 5px;
}

.cart-shipping-calculator-response ul li:last-child {
	margin-bottom: 0;
}

body #shopper_review_page {
	padding: 0;
}

body #review_header {
	padding: 0;
}

.pro-review h2.title {
	font-family: Proxima Nova;
	font-size: 35px;
	color: #000000;
	margin-bottom: 15px;
	margin-top: 20px;
}

#product_page #sa_sort {
	display: inline;
	width: inherit;
	font-size: 15px;
	border: none;
	margin-left: 10px;
	color: #000;
	cursor: pointer;
}

#review_image {
	font-size: 0;
}

.post-content-container img {
	margin: 0!important;
}

#product_page .paging .select-wrapper {
	width: 130px;
	padding: 5px 10px;
	border: none;
	position: static;
	display: inline-block;
	vertical-align: middle;
}

#sa_review_paging .select-wrapper select {
	position: static;
	opacity: 1;
}

#sa_review_paging .select-wrapper .selected-text {
	display: none;
}

.chau-morse-code-history .our-story-masthead {
	margin-top: 0;
}

.morse-code-history-page .navigation.full-width {
	margin-bottom: 0;
}

.page-title {
	font-size: 30px;
	display: block;
	color: #444444;
	text-transform: uppercase;
	margin: 0 auto;
	vertical-align: middle;
	padding: 0;
}

.morse-code-history-page .page-title {
	background: #f9f9f9;
}

.morse-code-history-page .navigation {
	margin: 0;
}

.morse-code-history-page #content {
	background: #f9f9f9;
}

.input-wrapper input[type="submit"],
.new-customer a.button.secondary,
.template-page .contact-form input[type=submit],
.cognito #c-submit-button {
	background: #7e594e;
	padding: 15px 30px;
	border-radius: 30px;
	font-family: "Proxima Nova", sans-serif;
	font-size: 15px;
	transition: all 0.4s ease;
}

.input-wrapper input[type="submit"]:hover,
.new-customer a.button.secondary:hover,
.template-page .contact-form input[type=submit]:hover,
.cognito #c-submit-button:hover {
	background-color: #ffffff!important;
	color: #7e594e;
	box-shadow: 0px 5px 20px rgba(228, 135, 135, 0.25);
}

.account-page input[type="text"],
.account-page input[type="email"],
.account-page input[type="tel"],
.account-page input[type="search"],
.account-page input[type="password"],
.account-page textarea,
.create-account-page input[type="text"],
.create-account-page input[type="email"],
.create-account-page input[type="tel"],
.create-account-page input[type="search"],
.create-account-page input[type="password"],
.create-account-page textarea {
	background: #FFFFFF;
	border: 2px solid #E5E5E5;
	border-radius: 25px;
	font-family: Proxima Nova;
	font-size: 14px;
	color: #000;
	font-weight: 700;
	margin: 0 auto;
	padding: 20px;
}

.shipping-information-page .page-content,
.chau-returns-exchanges .page-content,
.wide-container,
.chau-returns-exchanges .page-content,
.chau-returns-exchanges .page-content>*:not(.highlight),
.chau-faqs .page-content,
.chau-faqs .page-content>*:not(.highlight),
.chau-repairs-modifications .page-content,
.chau-repairs-modifications .page-content>*:not(.highlight) {
	width: 96%;
	max-width: 950px!important;
	padding: 0!important;
}

.chau-returns-exchanges .page-content p {
	clear: both;
	padding-left: 0;
	padding-right: 0;
}

.contact-us-page input[type="text"],
.contact-us-page input[type="email"],
.contact-us-page textarea,
body .cognito input[type="text"],
body .cognito input[type="email"],
body .cognito select {
	color: #000;
	background: #FFFFFF;
	border: 2px solid #E5E5E5;
	border-radius: 25px;
	font-family: Proxima Nova;
	font-size: 14px;
	font-weight: 700;
	margin: 0 auto;
}

body .cognito input[type="text"],
body .cognito input[type="email"],
body .cognito select {
	margin: 0;
	height: 40px;
	padding: 5px 15px;
}

.repairs-modifications-page .page-content a {
	color: #7e594e!important;
}

#shopper_review_page .select-wrapper {
	position: static;
	border: none;
	font-size: 15px;
	width: 150px;
	display: inline-block;
	vertical-align: middle;
	margin-left: 10px;
}

#shopper_review_page #merchant_page #sa_sort {
	border: none;
}

#merchant_page .paging .sa_page {
	color: #000;
}

body .c-label,
body .c-choice-option {
	font-family: "Proxima Nova", sans-serif!important;
	margin-bottom: 5px!important;
}

.wholesale__code,
#shopper_review_page {
	width: 100%;
	max-width: 950px;
}

.template-product #main {
	margin-top: 0;
}

body .cognito:not(.c-forms-actionBar) {
	margin: 0;
}

body .cognito #c-submit-button {
	border: none;
}

.home_top_slider .small_box .info span {
	margin-bottom: 5px;
	display: block;
}

.size-img img {
	width: 320px;
}

.search-results-products .product-list-item {
	background: #FFFFFF;
	border: 2px solid #E5E5E5;
	box-sizing: border-box;
	border-radius: 28px;
	padding: 22px 22px 32px 22px;
	width: 28.3333333333%;
	margin: 0 2.5% 3.3333333333em;
}

.search-results-products h3 a {
	text-align: center;
	display: block;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	font: 400 18px/1.5 "Proxima Nova", sans-serif;
	font-size: 24px;
	color: #4F4F4F;
	font-weight: 600;
}

.search-results-products .product-list-item-details p {
	font-size: 14px;
	line-height: 125%;
}

.search-results-products .product-list-item-price.price {
	font: 400 18px/1.5 "Proxima Nova", sans-serif;
	color: #4F4F4F;
	text-transform: capitalize;
	padding: 0;
}

.search-results-products .more {
	font-family: "$din", sans-serif;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #BFBFBF;
	font-size: 13px;
}

.search-results-products {
	font-size: 0;
	display: flex;
	flex-flow: wrap;
}

.search-results-products .product-list-item-thumbnail img {
	box-shadow: 0px 10px 40px #ECEFF2;
	border-radius: 28px;
}

.search-results-count {
	padding-bottom: 15px;
}

.search-results-products .quick-shop-modal-trigger {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	background: #7e594e;
	box-shadow: 0px 5px 20px rgba(228, 135, 135, 0.25);
	border-radius: 50px;
	font-size: 18px;
	color: #fff;
	padding: 16px 32px;
	width: 100%;
	max-width: 174px;
	margin: 0 auto!important;
}

.shopify-challenge__container {
	padding: 49px 0;
}

.shopify-challenge__container .shopify-challenge__button {
	margin-top: 40px;
}

.shopify-challenge__message {
	padding-bottom: 15px;
}

footer .row_1280.flex {
	z-index: 0;
}

.testimonial .row_1280 {
	z-index: 1;
}

.bottom_header.sticky {
	position: fixed;
	top: 40px;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 99;
	background: #fff;
	border-bottom: 1px solid #ededed;
	box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.1);
}

#product_page #sa_sort {
	background: #fff;
}

.filter-by .filter-list>li i {
	padding-left: 5px;
}

.filter-by .filter-list>li.active .fa {
	padding-right: 5px;
	padding-left: 0;
}

.ResetElements__Div-sc-8e6zl9-0.ErrorView__ErrorViewWrapper-sc-1rfd9ir-0.needsclick.undefined.dPGofH {
	background: transparent;
}

.ResetElements__Div-sc-8e6zl9-0.ErrorView__ErrorText-sc-1rfd9ir-1.needsclick.undefined.evleOc {
	background: transparent;
	color: #fff;
}


.ql-editor p {
	
	color: #fff !important;
  text-align: center !important;
  font-size: 30px !important;
}


.ql-editor p strong {
	font-size: 18px !important;
	margin-bottom: 5px !important;
}

.ql-editor p span {
	font-size: 15px !important;
  font-weight:200 !important;
  
}
p strong.ql-font-helvetica-neue {
    font-size: 30px !important;
}
nav.mainMenu li:hover {
	background: #f6f6f6;
}

.colors.flex .color.active {
	border: 1px solid #000 !important;
}

.product-quantity.inline-input-wrapper input[type="text"] {
	padding: 0 5px;
}

.selector-wrapper.length_1 {
	display: none;
}

.common_slider_check figure {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	border: 8px solid #FFFFFF;
	box-shadow: 0px 10px 30px #ECEFF2;
	background: linear-gradient(180deg, #ECEFF2 0%, #FFFFFF 100%);
	overflow: hidden;
	margin: 0 0 0 auto;
}

.common_slider_check figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.common_slider_check .customized_for_slider .product_image_container {
	border-radius: 50%;
	border: 2px solid transparent;
	padding: 7px;
	width: 120px;
	height: 120px;
	cursor: pointer;
	transition: border-color 300ms;
	margin-top: 50px;
}


/*
.common_slider_check .swiper-slide-thumb-active.customized_for_slider .product_image_container {
    border-color: #8E8E8E;
}*/

.common_slider_check .cstm_select_img.customized_for_slider .product_image_container {
	border-color: #8E8E8E;
}

.swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
	bottom: auto;
	top: 5px;
	left: auto;
	right: 19%;
	width: auto;
	color: #bebebe;
	font-size: 20px;
	font-family: DIN Condensed;
}

.swiper-button-next,
.swiper-button-prev {
	top: 0;
	width: 35px;
	height: 35px;
	margin: 0;
	color: #fff;
	border: 2px solid #fff;
	border-radius: 50%;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
	right: 0px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
	font-size: 12px;
	color: #fff;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
	left: auto;
	right: 6%;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
	border-color: #767676;
}

.swiper-button-next.swiper-button-disabled:after,
.swiper-button-prev.swiper-button-disabled:after {
	color: #767676;
}

.swiper-button-next:focus,
.swiper-button-prev:focus {
	outline: none;
	box-shadow: none;
}

.swiper-pagination.swiper-pagination-fraction span.swiper-pagination-current {
	color: #000;
}

.customize-steps .steptabbing .row {
	width: 100%;
	max-width: 1070px;
	/*     padding: 0 15px; */
}

.customize-steps #second .tab-content .row {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: -60px;
}

.product-list-item-price {
	font-family: Avenir, Proxima Nova;
	font-size: 24px;
	line-height: 100%;
	color: #4F4F4F;
	margin: 8px 0;
}

.inline-input-wrapper .personalized_pro_translated_msg input[type="text"] {
	width: 47px;
	border-radius: 0;
	padding: 0;
	text-align: center;
	display: inline-block;
	min-width: 0;
	margin-left: -7px;
}

.inline-input-wrapper .personalized_pro_translated_msg input.last_char {
	border-radius: 0 30px 30px 0;
}

.inline-input-wrapper .personalized_pro_translated_msg input[type="text"]:first-child {
	border-radius: 30px 0 0 30px;
}

.personalized_pro_msg,
.personalized_pro_translated_msg {
	display: inline-block;
	padding: 25px 0 30px;
	text-align: left;
}

#message-max-characters {
	color: #4F4F4F;
	margin-bottom: 20px;
	font-weight: 700;
	font-size: 18px;
}

#translated_message-max-characters {
	color: #4F4F4F;
	margin-bottom: 20px;
	font-weight: 700;
	font-size: 18px;
}

#translated_message-max-characters span {
	color: #BFBFBF;
	font-size: 15px;
}

.inline-input-wrapper .personalized_pro_msg input[type="text"] {
	background: #fff!important;
	text-align: center;
	max-width: 100%;
}


/* .customize-steps {
    margin-top: 40px;
    padding-bottom: 10%;
    display: flex;
    flex-flow: column;
} */

.customize-next {
	font-family: Arial;
	font-size: 17px;
	margin-left: 20px;
}

.row-new {
	color: #8E8E8E;
}

.card-body .steptabbing {
	flex-flow: column;
	flex-wrap: nowrap;
}

.space_checker {
	margin-bottom: 10%;
}

.add_additional_btn_1 {
	text-align: left;
}

.inner_span {
	color: #BFBFBF;
}

.button_for_tab_three {
	text-align: right;
}

.customize-progress__step.active:after {
	content: "";
	background: #000;
	height: 2px;
	width: auto;
	left: -1000px;
	right: 0;
	position: absolute;
	bottom: 28px;
	z-index: 2;
}

.customize-progress__step.active {
	position: relative;
}

.customize-progress {
	overflow: hidden;
}

#second {
	position: relative;
	width: 100%;
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
}

#second .card-footer.align-center {
	position: static;
	right: 15px;
	bottom: 17%;
}

#third .card-footer.align-center {
	margin-top: 80px;
}

.with_customizer .inline-input-wrapper input[type="text"] {
	/*  background: transparent;
    border: none;
    padding: 0;
    width: 55px;
    max-width: inherit;
    pointer-events: none; */
	text-align: center;
}

.with_customizer_title {
	display: none;
}

.same-divs-gift.custom_messages_container {
	padding-bottom: 5px;
}

.Message_txt span {
	width: 100%;
	display: block;
	max-width: 340px;
	text-align: left;
	margin: 0px auto 10px;
	font-weight: 600;
}

.Message_txt {
	padding-bottom: 40px;
}

.with_customizer {
	text-align: center;
}

#product-message-required-error,
#product-message-required-error_1,
#product-message-required-error_2 {
	position: absolute;
}

.personalized_pro_msg {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	flex-flow: column;
	padding-right: 20px;
	width: 30%;
	padding-bottom: 50px;
}


/*   .Message_txt2_row, .Message_txt3_row{display:none;} */

.customized_for_slider .more-content {
	display: none;
}

.width_half {
	width: 50%;
	float: left;
}

.additional_message_row_1 {
	display: none;
}

.additional_message_row_2 {
	display: none;
}

.additional_message_row_3 {
	display: none;
}


/*   .add_additional_btn_2, .custom_messages_container, .customize-progress-steps_product{
    display:none;
  } */

.customize-progress-steps_product {
	display: none;
}


/* .bottom_coll .home_single_cat figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
} */


/* .bottom_coll .home_single_cat figure {
    height: 310px;
} */

.bottom_coll .home_single_cat {
	width: 100%;
}

.logo_anchor {
	width: 126px;
}

.customize-rose {
	background-image: url(//https://cdn.shopify.com/s/files/1/1298/7601/t/35/assets/rose-gold-filled.png?v=4990532605448766456);
}

footer .left-part .footer-logo img {
	max-width: 210px;
}

.CustomColor .gold {
	background: #E8BD4E;
}

.CustomColor .rose {
	background-image: url(//https://cdn.shopify.com/s/files/1/1298/7601/t/35/assets/rose-gold-filled.png?v=4990532605448766456);
}

.selected_customezed_image .product_image_container figure {
	border-radius: 50% 50% 50% 50%;
	background: #fff;
	padding: 20px;
}

.width_half .swiper-button-prev {
	right: 10%;
}

.left_half,
.right_half {
	width: 50%;
	padding-left: 30px;
	padding-right: 30px;
}

.right_half {
	float: right;
	padding-right: 0;
}

.left_half {
	float: left;
	padding-left: 0;
}

.odd,
.even {
	margin-bottom: 25px;
	padding-bottom: 25px;
	position: relative;
	border-bottom: 1px solid #ccc;
}

.even:last-child {
	border-bottom: none;
}

.odd:last-child {
	border-bottom: none;
}

.faq-question {
	font-size: 25px;
	font-weight: 600;
	line-height: initial;
	margin-bottom: 15px;
}

.faq-answer {
	padding: 0;
}

.chau-faqs .page-content ul,
.chau-faqs .page-content>*:not(.highlight) .faq-answer ul {
	margin-left: 20px!important;
}

.faq-answer ul li {
	list-style: disc;
}

.odd:last-child:after,
.even:last-child:after {
	display: none;
}

.faq-answer p a {
	color: #4f4f4f;
	font-weight: 700;
}

button.needsclick.Button__FormStyledButton-p2mbjt-0.kOVkpm.kl-private-reset-css-Xuajs1 {
	padding: 0;
	min-width: 85px;
	height: 27px;
	border-radius: 30px!important;
}

.faq-answer p:last-child {
	padding-bottom: 0;
	margin-bottom: 0!important;
}

.faq-answer p {
	margin-bottom: 0!important;
	padding-bottom: 10px;
}


/* .customize-jstyle__extra.swiper-slide-thumb-active .more-content {
    display: block;
} */

.customize-jstyle__extra.cstm_select_img .more-content {
	display: block;
}

.customized_for_slider .more-content .product-list-item-details,
.selectedproduct_info {
	display: none;
}

.customized_for_slider .more-content {
	display: block;
	text-align: center;
}

.customized_for_slider .customize-jstyle__extra,
.customized_for_slider .product-list-item-price.price {
	display: none;
}

.customized_for_slider.cstm_select_img .product-list-item-price.price {
	display: block;
	text-align: center;
	color: #000;
}

.customized_for_slider.cstm_select_img .customize-jstyle__name {
	color: #000;
}

.common_slider_check_top .more-content {
	display: none;
}

#shopify-section-page-faq {
	padding-bottom: 100px!important;
}

.customize-steps #second h1 {
	margin-bottom: 0;
}

#second .product-list-item-thumbnail {
	padding-top: 0;
}

#second .tab-content {
	padding-top: 0;
}

.add_additional_btn_1,
.add_additional_btn_2 {
	display: none
}

.top-filter {
	padding: 20px 0 35px;
}

.customize_product_prev,
.customize_product_next {
	font-size: 0;
	width: 50px;
	height: 50px;
	background: #fff;
	border: 2px solid #7e594e;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	cursor: pointer;
	z-index: 2;
	top: 45%;
}

.customize_product_prev:after,
.customize_product_next:after {
	font-family: swiper-icons;
	font-size: var(--swiper-navigation-size);
	font-size: 16px;
	color: #7e594e;
}

.customize_product_prev:after {
	content: 'prev';
}

.customize_product_next:after {
	content: 'next';
}

.product-images {
	position: relative;
}

.customize_product_prev {
	left: -25px;
}

.customize_product_next {
	right: -25px;
}

.product-thumbnail.active:before {
	border: 3px solid #dcdada;
	border-radius: 25px;
}

.product-thumbnail img {
	border-radius: 25px;
}

.product-thumbnail {
	margin-bottom: 12px;
	width: 20%;
}

.product-thumbnails-wrapper {
	padding-bottom: 68px;
	max-width: 100%;
}

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

.custom_pdp_prev_next_images {
	position: relative;
}

.product-main-image img {
	border-radius: 28px;
}

.gallery-top-cust {
	margin-bottom: 30px;
	width: 100%;
	-webkit-box-shadow: 0px 0px 23px 4px rgb(182, 194, 202, 0.26);
	-moz-box-shadow: 0px 0px 23px 4px rgb(182, 194, 202, 0.26);
	box-shadow: 0px 0px 23px 4px 0px 0px 23px 4px rgb(182, 194, 202, 0.26);
	border-radius: 28px;
}

.customize_product_next.disable_next,
.customize_product_prev.disable_prev {
	border-color: #767676;
	opacity: .35;
	cursor: auto;
	pointer-events: none;
}

.customize_product_next.disable_next:after,
.customize_product_prev.disable_prev:after {
	color: #767676;
}

.nonextmesg {
	display: none !important;
}

#second .card-footer.align-center .row-new,
#third .card-footer.align-center .row-new {
	display: flex;
	width: 100%;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

#third .card-footer.align-center .row-new {
	align-items: center;
	justify-content: center;
}

.prevbtntext {
	margin-right: 8px;
}

.nextbtntext {
	margin-left: 8px;
}

.personalized_row_inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
	max-width: 85%;
	margin: 0 auto;
}

.trans_input {
	display: flex;
}

.trans_input input {
	flex: 1;
}

.inline-input-wrapper .personalized_pro_msg input {
	margin: 0 0 0 auto;
}

#message-max-characters {
	margin: 0 0 20px;
}

.personalized_pro_translated_msg {
	padding-left: 20px;
	width: 70%;
}

.err_msg {
	text-align: left;
	position: absolute;
	bottom: 0;
	font-size: 15px;
}

.add_additional_btn_1,
.add_additional_btn_2 {
	text-align: right;
}

.product-quantity,
.cart_qty_selector {
	background: #fff;
	border: 2px solid #E5E5E5;
	box-sizing: border-box;
	border-radius: 25px;
	font-family: Proxima Nova;
	width: 200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pdp-minus,
.pdp-plus,
#product-quantity,
.cart_qty_selector .cart__qty-input {
	border-radius: 0;
	border: none;
	width: 100%;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	font-weight: 700;
	cursor: pointer;
	color: #000;
}

.pdp-minus,
.pdp-plus {
	font-size: 20px;
}

.cart_qty_selector {
	margin: 20px 0 40px;
}

#product-quantity,
.cart_qty_selector .cart__qty-input {
	border: 1px solid #E5E5E5;
	border-left-width: 2px;
	border-right-width: 2px;
	max-width: 90px;
	cursor: auto;
	margin: 0;
	text-align: center;
}

.pdp-minus:hover,
.pdp-plus:hover {
	color: #7e594e;
}

.fa-search:before {
	display: none;
}

.cust_qty strong {
	display: none;
}

.left-div .item_price span.money {
	font-size: 24px;
}

.row.add_additional_btn_1 .personalized_row_inner,
.row.add_additional_btn_2 .personalized_row_inner {
	justify-content: flex-end;
}

.CustomColor .selector-wrapper.Material {
	display: none;
}

.chau-morse-code-history .our-story-masthead,
.chau-morse-code-jewelry-meaningful-and-personal .our-story-masthead {
	max-width: 950px;
}

.chau-morse-code-history .our-story-masthead img {
	margin-right: 0;
}

.chau-morse-code-history #our-story img,
.chau-morse-code-jewelry-meaningful-and-personal #our-story img {
	margin-left: 20px;
}

body .chau-morse-code-history #our-story,
.chau-morse-code-jewelry-meaningful-and-personal #our-story {
	max-width: 950px;
}

.morse-heading {
	padding-bottom: 0;
}

.chau-sterling-silver .page-content,
.chau-sterling-silver .page-content>*:not(.highlight),
.chau-14k-gold-filled .page-content,
.chau-14k-gold-filled .page-content>*:not(.highlight) {
	max-width: 950px!important;
}

.template-page .page-content {
	margin-top: 5px;
}



.tabs-customize {
	position: relative;
}

.search-cart .searchBox .open_form img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.quick-shop .add-to-cart input {
	background: #7e594e;
	box-shadow: 0px 5px 20px rgba(228, 135, 135, 0.25);
	border: 2px solid #0000;
	border-radius: 50px;
	font-family: Proxima Nova;
	font-size: 16px;
	text-align: center;
	color: #fff;
	margin: 0 auto;
	position: relative;
	cursor: pointer;
	transition: all 0.5s ease;
	text-transform: capitalize;
}

.quick-shop .add-to-cart {
	text-align: center;
	max-width: 290px;
}

.quick-shop.active .product-quantity.inline-input-wrapper {
	margin: 0 auto;
	height: 43px;
	margin-left: 45px;
}

.quick-shop.active .product-quantity.inline-input-wrapper input[type="text"] {
	height: 35px;
}

.quick-shop .product-thumbnails-wrapper {
	padding-bottom: 0;
}

.view-product {
	margin: 0 auto;
	text-align: center;
	margin-left: -30px;
}

body#page-customize .charlength {
	display: none;
}


/* developer css*/

.cstm-filter .filter-list {
	display: flex;
	justify-content: center;
	display: -webkit-box;
	/*display: -webkit-flex;*/
	display: -ms-flexbox;
}

.cstm-filter .filter-list label {
	padding: 4px 4px;
}

.cstm-filter .filter-list label:nth-child(2),
.cstm-filter .filter-list label:nth-child(4),
.cstm-filter .filter-list label:nth-child(6),
.cstm-filter .filter-list label:nth-child(8) {
	margin-right: 17px;
}

.cstm_date input[type="date"] {
	background: #FFFFFF;
	border: 2px solid #E5E5E5;
	box-sizing: border-box;
	border-radius: 25px;
	font-family: Proxima Nova;
	font-size: 14px;
	color: #ccc;
	font-weight: 700;
	margin: 0 auto;
	padding: 15px;
	width: 100%;
	max-width: 340px;
	height: 50px;
	outline: none;
}

.cstm_date input[type="date"]::-webkit-inner-spin-button,
.cstm_date input[type="date"]::-webkit-calendar-picker-indicator {
	color: #ccc;
	-webkit-appearance: none;
}

.customize-jstyle__preview {
	padding: 0 6px!important;
}




@media (max-width: 667px) {
	.product-details {
		-webkit-box-direction: reverse!important;
		-webkit-box-orient: vertical!important;
		-webkit-flex-direction: column!important;
		-moz-flex-direction: column!important;
		-ms-flex-direction: column!important;
		flex-direction: column!important;
		padding-bottom: 0!important;
	}
	.product-details .right-part {
		margin-top: 30px;
	}
	.template-collection .top.cover.flex.alc {
		display: none;
	}
}

@media (max-width: 1020px) {
	.mini-cart-wrapper:hover .mini-cart {
		display: block !important;
	}
}


/* ----responsive media------ */

@media(max-width:1440px) {
	.product-details .left-part .comments {
		padding-top: 50px;
	}
	.product-thumbnails-wrapper {
		padding-bottom: 50px;
	}
}

@media(max-width:1279px) {
	.collection-sorting .selectric-items {
		padding: 55px 20px 10px 25px;
		width: auto !important;
	}
	.top-filter {
		padding-bottom: 30px;
	}
	.row_1280,
	.row {
		width: 100%;
		max-width: 90%;
	}
	.inline-input-wrapper .personalized_pro_translated_msg input[type="text"] {
		width: 60px;
	}
	.common_slider_check figure {
		width: 100px;
		height: 100px;
		margin: 0 auto;
	}
	.common_slider_check .customized_for_slider .product_image_container {
		width: 120px;
		margin: 60px auto 0;
		height: 120px;
	}
	.swiper-pagination-custom {
		right: 30%;
	}
	.width_half .swiper-button-prev {
		right: 15%;
	}
	#second .card-footer.align-center {
		bottom: 13%;
	}
	.prevbtntext {
		margin-right: 0;
	}
	.nextbtntext {
		margin-left: 0;
	}
	.tabs-customize .card-footer.align-center {
		position: static;
	}
}

@media(max-width:991px) {
	.inline-input-wrapper .personalized_pro_translated_msg input[type="text"] {
		width: 49px;
	}
	.swiper-button-prev,
	.swiper-container-rtl .swiper-button-next {
		right: 7%;
	}
	.swiper-container-horizontal>.swiper-pagination-bullets,
	.swiper-pagination-custom,
	.swiper-pagination-fraction {
		right: 20%;
	}
	.swiper-button-next,
	.swiper-container-rtl .swiper-button-prev {
		right: 0;
	}
	.swiper-pagination-custom {
		right: 30%;
	}
	#second .card-footer.align-center {
		bottom: 0;
	}
}

@media(max-width:768px) {
	.pro-review h2.title {
		font-family: Proxima Nova;
		font-size: 30px;
	}
	footer .left-part .s-links {
		margin-bottom: 0;
		margin-top: 30px;
	}
	.collection .row.flex {
		display: block;
	}
	.filter-by.flex {
		display: block;
		text-align: left;
		width: 100%;
		padding: 0;
	}
	.top-filter h2 {
		display: block;
		width: 100%;
		text-align: left;
	}
	.filter-by p {
		margin: 0;
		padding: 20px 0 5px;
	}
}

@media(max-width:767px) {
	.search-results-products .product-list-item {
		width: 48.5%;
		margin: 0 0.75% 1.125em;
	}
	.personalized_pro_msg,
	.personalized_pro_translated_msg {
		display: block;
		width: 100%;
		text-align: center;
	}
	.personalized_pro_translated_msg {
		padding-bottom: 30px;
		padding-top: 25px;
		padding-left: 0;
	}
	#message-max-characters {
		margin: 0 auto 20px auto;
		align-items: center;
		justify-content: center;
	}
	.personalized_pro_msg {
		padding-bottom: 0;
		padding-right: 0;
	}
	body .width_half {
		width: 100%;
		float: none;
		text-align: center;
	}
	.common_slider_check figure {
		margin: 0 auto;
	}
	.button_for_tab_three {
		text-align: center;
		padding-right: 15px;
	}
	.swiper-button-next,
	.swiper-container-rtl .swiper-button-prev {
		right: 30%;
	}
	.swiper-button-prev,
	.swiper-container-rtl .swiper-button-next {
		right: auto;
		left: 30%;
	}
	.swiper-container-horizontal>.swiper-pagination-bullets,
	.swiper-pagination-custom,
	.swiper-pagination-fraction {
		right: 0;
		left: 0;
	}
	#second .card-footer.align-center {
		position: static;
	}
	#cardBody .inline-input-wrapper .row {
		text-align: center;
	}
	#third .card-footer.align-center {
		margin-top: 40px;
	}
	#product-message-required-error,
	#product-message-required-error_1,
	#product-message-required-error_2 {
		position: static;
	}
	.bottom_coll .home_single_cat {
		width: 50%;
	}
	.swiper-pagination-custom {
		right: 0;
	}
	.left_half,
	.right_half {
		padding: 0;
		width: 100%;
		float: none;
	}
	.faq-answer p {
		font-size: 18px;
		padding-bottom: 5px;
	}
	.faq-answer ul li {
		font-size: 16px;
	}
	#shopify-section-page-faq {
		padding-bottom: 50px!important;
	}
	.odd:last-child {
		border-bottom: 1px solid #ccc;
	}
	.customize-next,
	.customize-back {
		min-width: 120px;
		margin: 3px;
		padding: 10px;
	}
	#second .card-footer.align-center .row-new {
		display: flex;
		width: 100%;
		flex-wrap: wrap;
	}
	#second .card-footer.align-center .row-new {
		align-items: center;
		justify-content: center;
	}
	.prevbtntext,
	.nextbtntext {
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		flex-flow: column;
		margin: 0 auto;
	}
	.prevbtntext span,
	.nextbtntext span {
		font-size: 14px;
	}
	#product-message-required-error {
		margin: 0 auto;
		font-size: 14px;
		padding-top: 10px;
	}
	.personalized_row_inner {
		max-width: 100%;
	}
	.row.add_additional_btn_1 .personalized_row_inner,
	.row.add_additional_btn_2 .personalized_row_inner {
		justify-content: center;
	}
	.customize-steps #second .tab-content .row {
		margin-top: 20px;
	}
}

@media(max-width:670px) {
	.left-div {
		width: 100%;
		padding-left: 0;
	}
	.cart_content article figure {
		border-radius: 28px;
		overflow: hidden;
		box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.05);
		margin-right: 0;
		display: inline-block;
		width: 100%;
	}
	/*   .left-div {
    margin-bottom: 40px;
} */
	.cart_content article .wrap_btns .btn {
		font-size: 14px;
	}
	.cart_content article .wrap_btns .btn {
		font-size: 14px;
	}
	.spec_req {
		margin-top: 10px;
		display: block;
	}
	#dynamic-checkout-cart {
		min-height: auto;
	}
	.page-title {
		font-size: 27px;
		line-height: 35px;
		display: block;
	}
	.faq-question {
		font-size: 24px;
	}
}

@media(max-width:575px) {
	#giftWrapping,
	.same-divs-gift {
		padding: 20px;
	}
	.top-filter h2 {
		font-size: 20px;
	}
	.filter-list.flex {
		display: block;
	}
	.filter-by .filter-list>li:first-child {
		width: 30%;
	}
	.filter-by .filter-list>li:nth-child(2) {
		width: 50%;
	}
	.inline-input-wrapper .personalized_pro_translated_msg input[type="text"] {
		width: 40px;
		height: 35px;
		margin-left: -8px;
	}
	#translated_message-max-characters,
	#message-max-characters {
		font-size: 18px;
		line-height: 20px;
	}
	/*    .bottom_coll .home_single_cat figure {
    height: 250px;
} */
	input.needsclick.TextInput__FormStyledTextInput-sc-1o6de9f-0.jsJXfH.kl-private-reset-css-Xuajs1 {
		margin: 0!important;
	}
}

@media(max-width:480px) {
	.search-results-products .product-list-item {
		width: 99%;
		margin: 0 0.5% 1em;
	}
	.search-results-count {
		padding-bottom: 0;
	}
	.template-search .page-height {
		padding-top: 25px;
	}
	#giftWrappingExpandedInfo textarea {
		padding: 8px 10px;
	}
	#giftWrappingExpandedInfo textarea::placeholder {
		font-size: 13px;
	}
	.gift-right-img span {
		margin-right: 0;
		font-size: 13px;
	}
	#giftWrapping,
	.same-divs-gift {
		padding: 14px;
	}
	.swiper-button-next,
	.swiper-container-rtl .swiper-button-prev {
		right: 20%;
	}
	.swiper-button-prev,
	.swiper-container-rtl .swiper-button-next {
		left: 20%;
	}
	/*    .bottom_coll .home_single_cat figure {
    height: 170px;
} */
	form.needsclick.View__FormView-sc-1ou3cq2-0.gNazzB.klaviyo-form-version-cid_1.kl-private-reset-css-Xuajs1 {
		width: 320px;
	}
}

@media(max-width:767px) {
	.home_testimonial .swiper-button-prev {
		right: 7%;
		left: auto;
	}
	.home_testimonial .swiper-button-next {
		right: 0;
	}
	.home_testimonial .swiper-button-next,
	.home_testimonial .swiper-button-prev {
		width: 30px;
		height: 30px;
	}
	.home_testimonial .swiper-button-next:after,
	.home_testimonial .swiper-button-prev:after {
		font-size: 12px;
	}
}

@media(max-width:480px) {
	.home_testimonial .swiper-button-prev {
		right: 15%;
	}
	.same-divs-gift.custom_messages_container {
		padding-bottom: 0;
	}
	.Message_txt {
		padding-bottom: 20px;
	}
	.Message_txt span {
		margin: 0px auto 5px;
	}
	.search-cart form {
		width: 291px;
		right: 0;
		left: 0;
	}
  .search-cart form {
    left: -150px!important;
}
	.search-cart .h_wrap_cart .cart_popup {
		width: 316px;
		min-height: 279px;
		margin: 0 -41px 0px 0px;
	}
}



@media screen and (max-width: 1024px){

.mob_header {
    position: fixed;
    background-color: #fff;
    z-index: 9;
    width: 100%;
}
 .main_start {
    margin-top: 90px;
} 
  .search-cart form {
    left: -190px;
  }
}



@media screen and (max-width: 767px) {
	.date-tim-main .cstm_date input[type='date'] {
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
	}
	.date-tim-main .inline-input-wrapper input {
		max-width: 100%;
	}
	.date-tim-main .cstm_date {
		position: relative;
	}
	.date-tim-main .cstm_date::before {
		content: "";
		position: absolute;
		border: solid #C5C5C5;
		border-width: 0 3px 3px 0;
		right: 15px;
		top: 18px;
		padding: 3px;
		transform: rotate(45deg);
		-webkit-transform: rotate(45deg);
	}
}


/* .overview .charlength{display:none;} */

body#product-customize .selector-wrapper.Birthstone.length_1 {
	display: block;
}

div#shopify-section-1572937468031 {
	background: #ebeff2;
	margin-top: -162px;
	padding-top: 59px;
}


/* collapsible pannel */

.collapsible {
	background-color: #fff;
	color: #000;
	cursor: pointer;
	padding: 18px;
	width: 100%;
	border: none;
	text-align: left;
	outline: none;
	font-size: 15px;
}

.active,
.collapsible:hover {
	color: #000;
}

.content {
	padding: 0 18px;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.2s ease-out;
}

.category_content_main .content {
	border-left: 1px solid #e8e8e1;
	border-right: 1px solid #e8e8e1;
	border-bottom: 1px solid #e8e8e1;
}

.category_content_main .collapsible {
	position: relative;
	border-left: 1px solid #e8e8e1;
	border-right: 1px solid #e8e8e1;
	border-top: 1px solid #e8e8e1;
}

.category_content_main .active {
	border-bottom: inherit;
}

.category_content_main .collapsible:after {
	content: '';
	position: absolute;
	right: 20px;
	top: 42%;
	border: solid #717171;
	border-width: 0 2px 2px 0;
	display: inline-block;
	padding: 3px;
	clear: both;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
}

.category_content_main .active:after {
	transform: rotate(-135deg);
	-webkit-transform: rotate(-135deg);
}

body#collection-customize .full-height {
	padding-bottom: 50px!important;
}

.section-slideshow span {
	display: inline-block;
	margin-bottom: 6px;
}

@media screen and (min-width: 991px) {
	.home_top_slider .row_1280 {
		width: 950px !important;
		max-width: 100% !important;
		background-repeat: no-repeat;
		background-position: right;
		background-size: contain;
	}
	.mobile.swiper-container-initialized {
		display: none;
	}
	header .bottom_header .row_1280 {
		width: 950px;
	}
	.home_top_slider1 .row_1280:after {
		display: none;
	}
	.section-slideshow .swiper-slide {
    min-height: 100vh;
    background-position: right center;
    height: 100vh;
}
  .section-slideshow .home_top_slider1 {
  	height:100vh !important;
  }
  
	.customize-steps .swiper-slide {
		min-height: auto!important;
	}
  .sub_menu.shop_sub_menu .menu-item-content{position: relative;top: -53px;}
}

@media screen and (max-width: 991px) {
	.desktop.swiper-container-initialized {
		display: none;
	}
	.home_top_slider1 {
		height: 1112px;
	}
	body .home_top_slider1 .row_1280 {
		background-repeat: no-repeat;
		background-position: bottom;
		background-size: 50%;
		padding-top: 153px !important;
	}
	.swiper-slide {
		background-position: center!important;
	}
  .template-blog div#shopify-section-blogs {
    display: none;
}
}

@media (max-width: 768px) and (min-width: 320px) {
	.home_top_slider1 .row_1280 {
		padding-top: 150px !important;
		max-width: 100%;
		padding-left: 18px;
	}
	.home_top_slider1 .row_1280:after {
		display: none;
	}
}

@media (max-width: 767px) {
	.mobile_main p {
		display: none;
	}
  .middle_mob_sec.row {
    display: none;
}
}

.swiper-slide {
	background-repeat: no-repeat;
	background-position: right 0 top -54px;
	background-size: cover;
}

@media (max-width: 1400px) and (min-width: 992px) {
	.swiper-slide {
		background-position: right -240px top -54px;
	}
}

.template-article .sidebar {
	max-width: 270px;
	margin-right: 22px;
}

.template-article .sidebar__posts header h2 {
	text-align: left;
}

.template-article .sidebar__posts header {
	padding-bottom: 16px;
}

.template-article .sidebar__posts {
	border-radius: 0px;
	background: #f8f8f8;
	border: none;
	padding: 24px;
}

.template-article .posts .post {
	background: none;
	text-align: left;
}

.template-article .posts .post h4 {
	margin-bottom: 0;
}

.template-article .posts .post h3 a {
	font-weight: 200;
	text-transform: capitalize;
}

.template-article .sidebar__posts header {
	border-bottom: 1px solid #E5E5E5;
}

@media (min-width: 960px) {
	.template-article .sidebar__posts .posts .post:not(:last-child) {
		border-bottom: 0px solid;
	}
	.template-article .sidebar__posts .posts .post {
		padding: 11px 0;
	}
}

@media (max-width: 1760px) {
	.section-slideshow .home_top_slider1 {
		height: 650px;
	}
}

.searchBox .active img {
	display: none;
}

@media screen and (max-width: 1600px){
.customize-jtype__form li {
    margin: 12px 0px!important;
}
  .tabs-customize .card-footer.align-center{bottom:0!important;}
}
.home_blog .row_1280 {
    z-index: unset;
}
.product-list-item-details .more {
    display: none;
}

.sub_menu .menu-item-content a.btn:hover{
    border: 1px solid #7e594e !important;
}
.home_cont_row .btn-text-center.btn:hover{
 
    border: 1px solid #7e594e !important;
}
footer button.needsclick {
    border-radius: 50px !important;
}
input[type="submit"].button.secondary:hover, .cart-checkout.button:hover, .ca-btn:hover {
     
   background: #fff !important;
    color: #7e594e !important;
}

.cart_content aside .btn.checkout:hover {
  border: 1px solid #7e594e !important;
}

input.get-rates.secondary {

background-color: #7e594e !important;
}
.button.secondary, .submit.secondary, button.secondary, input[type="submit"].secondary, input[type="button"].secondary {
 
  border: 1px solid #7e594e;
}
svg.needsclick.kl-private-reset-css-Xuajs1 {
    background-color: #bb9d8b !important;
}
button.needsclick.go596865934.kl-private-reset-css-Xuajs1 {
    background: #7e594e!important;
    padding: 18px !important;
}
.home_top_slider1 .row_1280 .btn:hover {
    /* font-size: 16px; */
    /* text-transform: initial; */
    /* z-index: 5; */
    border: 1px solid #7e594e;
}
.ql-editor p {
    text-align: left !important;
}

.btn:hover {
    background-color: #fff;
    color: #7e594e;
    border: 1px solid;
}
.customize-next {
    margin-top: 10px !important;
}
input.needsclick.go1889483518.kl-private-reset-css-Xuajs1 {
    margin: 0px !important;
}
footer button.needsclick {
    background: #7e594e !important;
}
.junip-avatar {
    background-color: #3D3D3D !important;
}
.slider .slider__controls .slider__pagination {
  text-align: center;
  margin-top: 50px;
}
/* .slider .slider__controls .slider__pagination .swiper-pagination-bullet {
  width: 13px;
  height: 10px;
  display: inline-block;
  background: #fff;
  opacity: 0.2;
  margin: 0 5px;
  border-radius: 20px;
  transition: opacity 0.5s, background-color 0.5s, width 0.5s;
  transition-delay: 0.5s, 0.5s, 0s;
}
.slider .slider__controls .swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.slider .slider__controls .slider__pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: #ffffff;
  width: 100px;
  transition-delay: 0s;
} */
.section-slideshow .home_top_slider1 .swiper-slide {
    position: relative;
}
.section-slideshow .home_top_slider1 .swiper-slide .swiper-button-prev {
    position: absolute;
    left: 0;
    top: 44%;
    transform: translateX(-10px);
    opacity: 0;
  transition:all ease-in-out 0.4s;
}
.section-slideshow .home_top_slider1 .swiper-slide .swiper-button-prev:after, .section-slideshow .home_top_slider1 .swiper-slide .swiper-button-next:after {
    font-size: 20px;
    color: #000;
}
.section-slideshow .home_top_slider1 .swiper-slide .swiper-button-prev, .section-slideshow .home_top_slider1 .swiper-slide .swiper-button-next {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.8) !important;
    width: 50px;
    height: 100px;
    border-radius: 0 !important;
}
.section-slideshow .home_top_slider1 .swiper-slide .swiper-button-next {
    position: absolute;
    left: auto;
    right: 0;
    top: 44%;
    transform: translateX(10px);
    opacity: 0;
    transition: all ease-in-out .4s;
    margin: 0 !important;
}
.section-slideshow .home_top_slider1 .swiper-slide .row_1280.desktop_main {
    position: static;
}
.section-slideshow .home_top_slider1 .swiper-slide:hover .swiper-button-prev {
    opacity: 1;
    transform: translateX(10px);
}
.section-slideshow .home_top_slider1 .swiper-slide:hover .swiper-button-next {
    opacity: 1;
    transform: translateX(-10px);
}
.home_top_slider1 .swiper-pagination {
    width: 100%;
    display: flex!important;
    gap: 10px;
    justify-content: center;
    position: absolute!important;
    bottom: 60px!important;
    top: auto!important;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    display: inline-block;
    border-radius: 100%;
    background: transparent;
    opacity: 1;
  border:2px solid #fff;
}
.swiper-pagination-bullet-active {
    opacity: 1;
    background: #fff;
}

@media screen and (max-width:1200px) {
  .section-slideshow .home_top_slider1 .swiper-slide .swiper-button-prev {
    transform: translate(0px,0%);border: none;
}
  .section-slideshow .home_top_slider1 .swiper-slide .swiper-button-next {
    transform: translate(0px,0%);border: none;
}
  .section-slideshow .home_top_slider1 .swiper-slide:hover .swiper-button-prev {
  opacity:1;transform: translateX(10px);
}
.section-slideshow .home_top_slider1 .swiper-slide:hover .swiper-button-next {
  opacity:1;transform: translateX(-10px);
}
  .section-slideshow .home_top_slider1 .swiper-slide .swiper-button-prev, .section-slideshow .home_top_slider1 .swiper-slide .swiper-button-next {

    top: 50%;
}
}