*, *:after, *:before {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

@font-face {
	font-family: "Calibri";
	src: url("/static/css/fonts/Calibri Bold.ttf") format("truetype");
	font-weight: 600;
	font-style: normal;
}

@font-face {
	font-family: "Calibri";
	src: url("/static/css/fonts/Calibri Light.ttf") format("truetype");
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: "Calibri";
	src: url("/static/css/fonts/Calibri Regular.ttf") format("truetype");
	font-weight: 500;
	font-style: normal;
}

@font-face {
    font-family: "BNGL";
    font-style: normal;
    src: 
    	url("/static/css/fonts/BNGL-by-kir.ttf") format("truetype"),
    	url("/static/css/fonts/BNGL-by-kir.woff") format("woff"),
    	url("/static/css/fonts/BNGL-by-kir.woff2") format("woff2");
    font-weight: 600;
  }

/*@font-face {
	font-family: "icomoon";
	src: url("/static/css/fonts/icomoon.ttf") format("truetype");
	font-weight: 500;
	font-style: normal;
}*/

input {   
    /* Remove First */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input:disabled {
	background-color: #fff;
}

body {
	color: #2b2b2b;
	font-family: 'Calibri', Arial, sans-serif;
	background-color: #fff;
}

 .mobile {
 	display: none;
 }

 .red {
	color: #EA8A31;
 }

 .blue {
 	color: #3B7DC2;
 }

.custommenu {
	position: fixed;
	top: 0;left: 0;
	width: 100%;
	z-index: 1000;
	background-color: #fff;
	transition: top 0.3s;
}

.custommenu a {
	color: #000;
	text-decoration: none;
	font-family: 'Calibri', sans-serif;
	font-weight: 400;
	transition: color ease-in-out .2s;
}

.custommenu__inner {
	position: relative;
	max-width: 1165px;
	/*max-width: 1200px;*/
	margin: 0 auto;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: .1em 0;
}

.custommenu__inner:first-child:after {
	content: "";
	position: absolute;
	left: -30em;
	bottom: 0;
	width: calc(100% + 60em);
	border-bottom: 1px solid rgba(0,0,0,.8);
}

.loading__button-gif {
	position: relative;
	overflow: hidden;
}

.loading__button-gif span.back {
	position: absolute;
	top: 0;left: 0;
	width: 100%;height: 100%;
	z-index: 90;
}

.loading__button-gif:before {
	content: "";
	position: absolute;
	top: 0;left: 0;
	width: 100%;
	height: 100%;
	z-index: 100;
	background-position: center;
	background-size: 1em auto;
	background-repeat: no-repeat;
}

.loading__button-gif-white:before {
	background-image: url(/static/img/loading-button-white.svg);
}

.loading__button-gif-black:before {
	background-image: url(/static/img/loading-button-black.svg);
}


.switch {
  display: inline-block;
  position: relative;
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 24px;
  display: flex;
  align-items: center;
  width: 100%;
}
.switch__input {
  position: absolute;
  top: 0;
  left: 0;
  width: 36px;
  height: 20px;
  opacity: 0;
  z-index: 0;
}
.switch label.switch__label {
  display: block;
  margin-top: 0;
  padding: 2px 0 0 44px;
  cursor: pointer;
  flex-grow: 1;
  font-weight: 400;
}
.switch__label:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 36px;
  height: 14px;
  background-color: rgba(0, 0, 0, 0.26);
  border-radius: 14px;
  z-index: 1;
  transition: background-color 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.switch__label:after {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  z-index: 2;
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition-property: left, background-color;
}
.switch__input:checked + .switch__label:before {
  background-color: rgba(63, 81, 181, 0.5);
}
.switch__input:checked + .switch__label:after {
  left: 16px;
  background-color: #3B7DC2;
}

/*.loading__button-gif:after {
	content: "Загрузка";
	padding-top: 0.2em;
	color: #fff;
	position: absolute;
	top: 0;left: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}*/

/*
.custommenu__inner:first-child:before {
	content: "";
	position: absolute;
	height: 100em;
	left: 0;top: 0;
	width: 1px;
	background-color: rgba(0,0,0,.4);
}*/

.custommenu__mobile {
	display: none;
}

.custommenu__inner-sub {
	display: none;
}

.custommenu__left, .custommenu__right {
	flex-basis: 6em;
}

.custommenu__left {
	flex-grow: 1;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.custommenu__left a {
	position: relative;
	display: block;
	height: 1.7em;
}

/*.custommenu__left a:after {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 100em;
	height: 1px;
	background-color: blue;
}
*/
.custommenu__left img {
	height: 100%;
}

.custommenu__logo {
	padding: .2em 0 0 .2em;
}

img.custommenu__logo {
	width: 3.8em;
	height: auto;
}

.custommenu__cart-mobile {
	display: none;
}

.custommenu__middle {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-around;
	align-items: center;
	width: 45em;
}

.custommenu__sub {
	margin: auto;
	max-width: 45em;
	width: 45em;
	padding: .4em 0;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
}

.custommenu__back {
	position: fixed;
	top: 2.5em;left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.4);
	display: none;
}

.custommenu a {
	color: #000;
	white-space: nowrap;
}

.custommenu a.active {
	color: #3B7DC2;
}

.custommenu__middle .submenu__item {
	padding-left: 2em;
	display: none;
}

.custommenu a:hover {
	color: #3B7DC2;
}

.custommenu__right {
	flex-grow: 1;
	text-align: right;
	padding-top: .3em;
	padding-bottom: .2em;
}

.custommenu__cart {
	position: relative;
	margin-top: -.1em;
	padding-bottom: .2em;
	width: 2em;
	height: 2.7em;
	cursor: pointer;
	display: -webkit-inline-flex;
	display: -moz-inline-flex;
	display: -ms-inline-flex;
	display: -o-inline-flex;
	display: inline-flex;
	justify-content: center;
	align-items: center;
}

.custommenu__cart-img {
	width: 50%;
}

.custommenu__burger {
	position: relative;
	display: none;
	cursor: pointer;
	z-index: 100;
}

.toggle-menu {
	position: relative;
	width: 28px;	
	height: 28px;
	max-height: 30px;
	padding: 2px 5px;
	border-radius: 5px;
	cursor: pointer;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
}

.line {
	position: absolute;
	width: 100%;
	height: 2px;
	width: 70%;
	left: 15%;
	border-radius: 5px;
	background-color: #000;
	transition: transform 0.2s ease-out;
	transform-origin: center;
	-webkit-transition: transform 0.2s ease-out;
	-moz-transition: transform 0.2s ease-out;
	-ms-transition: transform 0.2s ease-out;
	-o-transition: transform 0.2s ease-out;
}

.line1 {
	top: 10px;
}

.line2 {
	top: 17px;
}


.toggle .line1 {
	-webkit-transform: translateY(4px) rotate(45deg);
	   -moz-transform: translateY(4px) rotate(45deg);
	    -ms-transform: translateY(4px) rotate(45deg);
	     -o-transform: translateY(4px) rotate(45deg);
	        transform: translateY(4px) rotate(45deg);
}

.toggle .line2 {
	-webkit-transform: translateY(-3px) rotate(-45deg);
	   -moz-transform: translateY(-3px) rotate(-45deg);
	    -ms-transform: translateY(-3px) rotate(-45deg);
	     -o-transform: translateY(-3px) rotate(-45deg);
	        transform: translateY(-3px) rotate(-45deg);
}

.toggle .toggle-menu {
	background-color: white;
}

.custommenu__burger span {
	display: block;
	height: 3px;
	width: 1.5em;
	background-color: rgba(0,0,0,.4);
	margin-top: 3px;
}

.custommenu__cart-count {
	position: absolute;
	bottom: .4em;right: .2em;
	display: none;
	justify-content: center;
	align-items: center;
	width: 1.4em;
	height: 1.4em;
	line-height: .9em;
	border-radius: 50%;
	background-color: #3B7DC2;
	color: #fff;
	font-family: Arial, sans-serif;
	font-size: .7em;
	font-weight: 550;
}

.custommenu__cart-count.active {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}

/*popup for custom bracelets or enptycart*/

.popup-custom-wrap, .popup-custom, .emptycart, .popup {
	position: fixed;
	top: 0;left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255,255,255,.9);
	z-index: 9999;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	align-items: center;
	display: none;
}

.popup-custom-window {
	width: 20.5em;
	padding: 4em 1em;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	background-color: #fff;
	border: 1.5px solid #898989;
	border-radius: 5px;
	text-align: center;
}

.popup-custom-title {
	font-size: 1.2em;
}

.popup-custom .popup-custom-title-standard {
	display: none;
}

.standard .popup-custom-title-standard {
	display: block;
}

.standard .popup-custom-title:not(.popup-custom-title-standard) {
	display: none;
}

.popup-custom-button {
	text-decoration: none;
	font-size: 1.2em;
	width: 13em;
	line-height: 2.5em;
	border-radius: 5px;
	cursor: pointer;
	font-weight: 600;

	background-color: #3B7DC2;
	color: #fff;
	margin-top: 1em;
}

.popup-custom-button.loading {
	position: relative;
	overflow: hidden;
	color: transparent !important;
	pointer-events: none;
}

.popup-custom-button.loading::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
	background-size: 200% 100%;
	animation: loading-shimmer 1.5s infinite linear;
}

@keyframes loading-shimmer {
	0% {
		background-position: 200% 0;
	}
	100% {
		background-position: -200% 0;
	}
}

.popup-custom-more, .popup-custom-white {
	background-color: #fff;
	border: 1.5px solid #898989;
	margin-top: 1em;
	font-weight: 600;
	color: #2b2b2b;
}

/*end popup*/

.inner {
	width: 100%;
	max-width: 1165px;
	/*max-width: 1200px;*/
	margin: auto;
}

.block {
	-webkit-background-size: cover;
	background-size: cover;
	background-position: center top;
	width: 100%;
	height: 18vh;
	min-height: 679px;
	font-family: 'Calibri', Arial, sans-serif;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: #444;
}

.block:not(:first-child){
	margin-top: 1em;
}

.block-1 {
	color: #3d3a3a;
	display: block;
	padding-top: 6.7em;
}

.no-webp .block-1 {
	background-image: url(/static/img/back1.png);
}

.no-webp .block-2 {
	background-image: url(/static/img/back2.png);
}

.no-webp .block-3 {
	background-image: url(/static/img/back3.png);
}

.no-webp .block-4 {
	background-image: url(/static/img/back4.png);
}

.no-webp .block-5 {
	background-image: url(/static/img/back5.png);
}

.webp .block-1 {
	background-image: url(/static/img/back1.webp);
}

.webp .block-2 {
	background-image: url(/static/img/back2.webp);
}

.webp .block-3 {
	background-image: url(/static/img/back3.webp);
}

.webp .block-4 {
	background-image: url(/static/img/back4.webp);
}

.webp .block-5 {
	background-image: url(/static/img/back5.webp);
}

div.collections {
	width: 100%;
	padding-top: 0;
	display: flex;
	justify-content: space-between;
	margin-top: 1em;
}

.collections__block {
	flex: 1 1 33%;
	margin: 0 .5em;
	padding-top: 1em;
	height: 100%;
	background-size: cover;
	background-position: center top;
}

.webp .collections__block-magic {
	background-image: url(/static/img/collections/magic-desk.webp);
}

.webp .collections__block-reminder {
	background-image: url(/static/img/collections/reminder-desk.webp);
}

.webp .collections__block-idealgift {
	background-image: url(/static/img/collections/idealgift-desk.webp);
}

.no-webp .collections__block-magic {
	background-image: url(/static/img/collections/magic-desk.jpeg);
}

.no-webp .collections__block-reminder {
	background-image: url(/static/img/collections/reminder-desk.jpeg);
}

.no-webp .collections__block-idealgift {
	background-image: url(/static/img/collections/idealgift-desk.jpeg);
}

.block-2, .block-3, .block-4, .block-5 {
	display: block;
	padding-top: 1.5em;
	background-position: center;
	min-height: 630px;
}

.block-2 a {
	margin-top: .7em;
}

.block-3 p {
	margin-top: .4em;
}

.block-3 a {
	margin-top: .5em;
}

.block-4 a {
	margin-top: .6em;
}

.block__center	{
	padding-bottom: 3em;
}

.block__logo {
	width: 8.5em;
}

.block h2 {
	margin-top: .37em;
	font-size: 2.5em;
	letter-spacing: 0;
	color: #2B2B2B;
}

.block p, .block__insta p {
	margin-top: .25em;
	font-size: 1.9em;
	font-weight: 500;
	letter-spacing: 0;
	color: #2B2B2B;
}

.block-5 h2, .block-5 p {
	color: #fff;
}

.block a, .block__insta a {
	display: block;
	text-decoration: none;
	margin-top: 1.1em;
	margin-left: .9em;
	font-weight: 500;
	font-size: 1.55em;
	color: #3B7DC2;
	font-family: 'Calibri', Arial, sans-serif;
	position: relative;
}

a svg {
	margin-left: -.1em;
}

.collections h2 {
	font-size: 2.1em;
}

.collections a {
	margin-top: .4em;
}

/*.block-2 a, .block-3 a, .block-4 a, .block-5 a {
	margin-top: 1em;
}*/

.block__insta {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-direction: column;
	padding-bottom: 2em;
}

.block__insta h2 {
	font-family: 'Calibri', Arial, sans-serif;
	text-align: center;
	font-size: 2.5em;
	margin-top: 1.5em;
}

.block__insta .inner {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	margin-top: 2.6em;
	align-items: flex-start;
}


.block__insta a {
	flex: 0 0 32%;
	margin-top: 1em;
}

.block__insta-feed a {
	margin-top: 0em;
	padding-bottom: 0;
	margin-left: 0;
	font-size: 0;
	border-radius: 50%;
	overflow: hidden;
}

.block__insta img {
	width: 100%;
}

/*footer*/

.footer {
	background-color: #f0f0f0;
	padding: 2.5em 0;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	align-items: center;
	flex-direction: column;
	font-family: 'Calibri', Arial, sans-serif;
	color: #525252;
	box-sizing: border-box;
}

.footer * {
	box-sizing: border-box;
}

.footer .inner {
	width: 100%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	padding: 0 2em;
	justify-content: space-between;
}

.footer__right {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	width: 60%;
}

.footer .mobile {
	display: none;
}

.footer ul {
	list-style: none;
}

.footer a {
	text-decoration: none;
	color: #000;
}

.footer__logo {
	width: 5em;
}

.footer .column__title {
	font-weight: 500;
	font-size: 1.2em;	
	text-transform: capitalize;
	border-bottom: 1px solid rgba(0,0,0,.4);
	display: inline-block;
}

.column-1 {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}


.copy.mobile {
	justify-content: flex-start;
}

.footer li {
	margin-top: .4em;
}

.footer .bottom {
	width: 100%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 2em;
}

.footer .social {
	width: 16em;
	max-width: 100%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer .social img {
	width: 2.8em;
}

.footer .social a:not(:first-child) {
	margin-left: 1em;
}

.footer .links {
	padding-top: 1.2em;
	justify-content: center;
}

.footer .shrink {
	display: inline-block;
	font-size: .8em;
}

.footer .divider {
	margin: 0 .5em;
}
