* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: 'Poiret One', sans-serif;
	font-weight: bold !important;
}

.preloader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%; 
	height: 100%; 
	background-color: #461B0B; 
	z-index: 1000000;
}

.preloader-inner {
	position: fixed;
	top: 50%; 
	left: 50%;
	transform: translate(-50%, -50%) rotate(0);
	width: 60px;
	height: 60px;
	border-radius: 50%; 
	border: 5px solid #ffffff;
	border-top: 5px solid #E57C06; 
	animation: spin 1s infinite;
}
@keyframes spin {
	from {
		transform: translate(-50%, -50%) rotate(0deg);
	} to {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}
/* Start Header */
.header {
	z-index: 10000;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 13px 15px 10px; 
	transition: all 0.5s;
}
.header.scroll,
.header.colored {
	background: #E57C06;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25); 
}
.container {
	width: 100%;
	max-width: 1140px; 
	margin: 0 auto; 
	display: flex; 
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}
.header__menu,
.header__action {
	width: 100%;
	max-width: 460px;
}
.header__menu > ul {
	padding: 0;
	margin: 0;
	list-style: none; 
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.header__menu > ul > li {
	margin-right: 50px;
	position: relative;
}
.header__menu > ul > li.menu-item-has-children {
	padding-right: 20px;
	cursor: pointer;
}
.header__menu > ul > li.menu-item-has-children:after {
	content: "";
	background-image: url("../img/header/arrow-drop-down.png");
	position: absolute;
	top: 9px;
	right: 0;
	width: 10px;
	height: 5px; 
	background-position: 50% 50%;
	background-size: cover;
	background-repeat: no-repeat;
}
.header__menu > ul > li.menu-item-has-children:before {
	content: "";
	position: absolute;
	height: 27px;
	width: 100%;
	left: 0;
	bottom: -27px;
}
.header__menu > ul > li:last-child {
	margin-right: 0;
}
.header__menu > ul > li > a {
	font-style: normal;
	font-family: 'Poiret One', sans-serif;
	font-weight: normal;
	font-size: 16px;
	line-height: 20px;
	color: #FDFAE6;
	text-decoration: none;
}
.sub-menu {
	position: absolute;
	left: -15px;
	top: calc(100% + 26px);
	display: none;
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s;
}
.header__menu > ul > li.menu-item-has-children:hover .sub-menu {
	display: block;
	visibility: visible;
	opacity: 1;
}
ul.sub-menu {
	background-color: #ffffff;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	min-width: 160px; 
	list-style: none;
}
ul.sub-menu li {
	margin: 0;
	width: 100%;
}
.sub-menu li a {
	padding: 10px 15px;
	display: block;
	transition: all 0.5s; 
	color: #461B0B; 
	text-decoration: none;
}
.sub-menu li a:hover {
	background-color: #461B0B;
	color: #ffffff;
}
.header__logo a {
	display: block;
}
.header__logo a img {
	display: block;
	margin: 0 auto;
}
.header__action {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
}
.header__cart {
	margin-left: 30px;
}
.header__cart a {
	display: block;
}
.header__cart a img {
	display: block;
}
.header__cta a {
	display: block;
	width: 160px;
	text-align: center;
	line-height: 40px;
	transition: all 0.5s;
	font-style: normal;
	font-weight: normal;
	font-size: 16px;
	color: #FDFAE6;
	background: #461B0B;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
	border-radius: 7px;
	padding-bottom: 2px;
	text-decoration: none;
}
.header__toggle {
	display: none;
}
.header__toggle.close .close {
	display: block;
}
.header__toggle.close .open {
	display: none;
}
.header__toggle.open .close {
	display: none;
}
.header__toggle.open .open {
	display: block;
}
.header__menu > a {
	display: none;
}
.header__cart a {
	position: relative;
}
.header__cart a span {
	border-radius: 50%;
	position: absolute;
	display: block;
	background-color: #461B0B;
	color: #FDFAE6;
	font-size: 10px;
	letter-spacing: 1px;
	line-height: 14px;
	top: -4px;
	right: -4px;
	padding-left: 3px;
	padding-right: 3px;
}
@media screen and (max-width: 1140px) {
	.header {
		background: #E57C06;
		box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25); 
	}
	.header__toggle {
		display: block;
		max-width: 50px;
		width: 100%;
	}
	.header__menu {
		width: 100%; 
		max-width: 100%;
		order: 2;
		display: none;
	}
	.header__menu.open {
		display: block;
	}
	.header__cta {
		display: none;
	}
	.header__action {
		max-width: 50px;
	}
	.header__menu ul {
		display: block;
	}
	.header__menu ul li {
		width: 100%;
		margin: 0;
		padding: 10px 0;
	}
	.header__menu ul li.has-children:after {
		display: none;
	}
	.sub-menu {
		position: static;
		width: 100%;
		display: block;
		visibility: visible;
		opacity: 1;
		border-top: 20px solid transparent;
	}
	ul.sub-menu  {
		background-color: transparent;
		box-shadow: none;
	}
	.sub-menu li {
		padding: 0;
	}
	.sub-menu li a {
		color: #FDFAE6;
	}
	.sub-menu li a:hover {
		color: #FDFAE6; 
		background-color: transparent;
	}
	.header__menu > a {
		display: block;
		width: 160px;
		text-align: center;
		line-height: 40px;
		transition: all 0.5s;
		font-style: normal;
		font-weight: normal;
		font-size: 16px;
		color: #FDFAE6;
		background: #461B0B;
		box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
		border-radius: 7px;
		padding-bottom: 2px;
		text-decoration: none; 
		margin: 15px 0;
	}
	.sub-menu li a {
		padding: 0 15px !important;
	}
	.header__menu > ul > li.menu-item-has-children:after {
		display: none;
	}
}
/* End Header */

/* Start Main Section */
.main__slide-content {
	min-height: 55vh;
	background-position: 50% 50%;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
	overflow: hidden; 
	display: flex;
	padding: 75px;
	align-items: flex-end;
	justify-content: flex-end;
}
.main__slide-content svg {
	position: absolute;
	bottom: 0;
	right: 0;
	display: block;
	width: 100%;
	transform: translateY(100px);
}
.main__slide-content-text {
	position: relative;
	z-index: 10;
	text-align: right;
	width: 100%;
	max-width: 1140px;
	margin: 0 auto;
}
.main__slide-content-text h3 {
	font-style: normal;
	font-weight: normal;
	font-size: 18px;
	line-height: 21px;
	text-align: right;
	color: #FDFAE6; 
	margin: 0 0 10px;
}
.main__slide-content-text h2 {
	font-style: normal;
	font-weight: normal;
	font-size: 40px;
	line-height: 47px;
	text-align: right;
	color: #FDFAE6;
}
.main__slide-content-text a {
	display: inline-block;
	width: 200px;
	text-align: center;
	line-height: 40px;
	transition: all 0.5s;
	font-style: normal;
	font-weight: normal;
	font-size: 16px;
	color: #FDFAE6;
	background: #E57C06;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
	border-radius: 7px;
	padding-bottom: 2px;
	text-decoration: none;
	margin-top: 20px;
}
.main__slider.slick-dotted.slick-slider {
	margin-bottom: 0 !important;
}
.main__slider .slick-dots {
	bottom: 0 !important;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%; 
	padding-bottom: 20px;
}
.main__slider .slick-dots li button {
	width: 10px !important;
	height: 10px !important;
	padding: 0 !important; 
	border-radius: 50%; 
	background-color: #BCBCBC;
}
.main__slider .slick-dots li.slick-active button {
	background-color: #E57C06;
}
.main__slider .slick-dots li button:before {
	display: none;
}
.main__slider .slick-dots li {
	height: 10px;
	width: 10px; 
	margin: 0 8px;
}
@media screen and (max-width: 1400px) {
	.main__slide-content svg {
		transform: scale(1.2) translateX(0);
	}
}
@media screen and (max-width: 992px) {
	.main__slide-content svg {
		transform: scale(1.5) translateX(0);
	}
}
@media screen and (max-width: 768px) {
	.main__slide-content {
		min-height: 500px;
	}
	.main__slide-content svg {
		transform: scale(2) translateX(-25%);
	}
	.main__slide-content {
		padding: 25px 25px 50px;
	}
	.main__slide-content-text h3 {
		font-size: 14px;
		line-height: 20px;
	}
	.main__slide-content-text h2 {
		font-size: 20px;
		line-height: 26px;
	}
}
@media screen and (max-width: 500px) {
	.main__slide-content svg {
		transform: scale(4) translateX(-25%);
	}
}
/* End Main Section */

/* Start Bundle Section */
.bundle {
	padding: 30px 15px;
}
.bundle__container {
	width: 100%;
	max-width: 1140px;
	margin: 0 auto;
}
.bundle__row {
	display: flex;
	flex-wrap: wrap; 
	margin-left: -20px;
	margin-right: -20px;
}
.bundle__col {
	width: 25%;
	max-width: 300px;
	padding: 20px 15px;
}
.bundle__title {
	font-style: normal;
	font-weight: normal;
	font-size: 24px;
	line-height: 24px;
	color: #461B0B; 
	padding-top: 30px;
	margin-bottom: 10px;
}
.bundle__item {
	display: block;
	background: #FDFAE6;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
	border-radius: 7px; 
	padding: 15px;
}
.bundle__item-header {
	position: relative;
	padding-right: 30px;
}
.bundle__item-header-buy {
	position: absolute;
	top: 0;
	right: 0;
}
.bundle__item-header-info span {
	display: block;
	font-size: 16px; 
	line-height: 20px;
}
.bundle__item-image img {
	display: block;
	margin: 10px auto; 
	max-width: 100%;
}
.bundle__item-header-buy button {
	display: block;
	border: none;
	background-color: transparent;
	cursor: pointer;
}
.bundle__item-header-buy button:focus,
.bundle__item-header-buy button:active,
.bundle__item-header-buy button:hover {
	outline: none;
	background-color: transparent;
}
.bundle__item-main-title a {
	display: block; 
	font-size: 18px;
	line-height: 24px; 
	text-decoration: none;  
	color: #000000;
}
.bundle__item-main-title span {
	display: block;
	font-size: 14px;
	line-height: 20px;
	color: #000000;
}
.bundle__row {
	margin-left: -20px; 
	margin-right: -20px;
}
@media screen and (max-width: 1200px) {
	.bundle__col {
		width: 33.33333%;
	}
	.bundle__container {
		max-width: 840px;
	}
}
@media screen and (max-width: 768px) {
	.bundle__col {
		width: 50%;
	}
	.bundle__container {
		max-width: 570px;
	}
}
@media screen and (max-width: 600px) {
	.bundle {
		padding: 30px 15px;
	}
	.bundle__row {
		margin-left: -7.5px; 
		margin-right: -7.5px;
	}
	.bundle__item-header-info span {
		font-size: 10px;
	}
	.bundle__col {
		padding: 7.5px;
	}
	.bundle__item-main-title a {
		font-size: 12px; 
		line-height: 20px;
	}
	.bundle__item-main-title span {
		font-size: 10px;
		line-height: 16px;
	}
	.bundle__item-header {
		padding-right: 15px;
	}
	.bundle__item {
		padding: 10px;
	}
	.bundle__title {
		margin-bottom: 20px;
	}
}
/* End Bundle Section */

/* Start About Us Section */
.about-us {
	padding: 30px 15px;
}
.about-us__content h2 {
	font-style: normal;
	font-weight: normal;
	font-size: 24px;
	line-height: 24px;
	color: #461B0B; 
	padding-top: 30px;
	margin-bottom: 30px;
}
.about-us__content p {
	font-style: normal;
	font-weight: normal;
	font-size: 18px;
	line-height: 24px;
	color: #461B0B; 
	margin-bottom: 10px;
}
@media screen and (max-width: 600px) {
	.about-us {
		padding: 30px 15px;
	}
	.about-us__content h2 {
		padding-top: 0;
	}
	.about-us__content p {
		font-size: 14px;
		line-height: 20px;
	}
}
/* End About Us Section */

/* Start Footer */
.footer {
	background: #461B0B;
	padding: 50px 15px 20px;
}
.footer__container {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
}
.footer__col {
	width: 50%;
}
.footer p {
	font-style: normal;
	font-weight: normal;
	font-size: 18px;
	line-height: 24px;
	margin: 0 0 10px;
	color: #FDFAE6;
}
.footer p a {
	color: #FDFAE6; 
	text-decoration: none;
}
.footer p:last-child {
	margin: 0px;
}
.footer__social-link a {
	display: block; 
	text-decoration: none;
}
.footer__social-link a span {
	font-style: normal;
	font-weight: normal;
	font-size: 18px;
	line-height: 24px;
	margin-left: 15px;
	color: #E57C06;
	transform: translateY(-15px);
	display: inline-block;
}
@media screen and (max-width: 768px) {
	.footer__col {
		width: 100%;
	}
	.footer {
		padding: 30px 15px;
	}
	.footer p {
		font-size: 14px; 
		line-height: 20px; 
		margin: 0 0 15px !important;
	}
}
/* End Footer */

/* Start Breadcrumbs Section */
.breadcrumbs {
	padding: 100px 15px 0;
}
.breadcrumbs ul {
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex; 
	flex-wrap: wrap;
}
.breadcrumbs ul li a,
.breadcrumbs ul li span {
	display: block;
	font-style: normal;
	font-weight: normal;
	font-size: 16px;
	line-height: 24px;
	color: #3C3C3C;
	text-decoration: none;
}
/* End Breadcrumbs Section */

/* Start Single Product */
.single-product {
	padding: 50px 15px 0;
}
.single-product__container {
	width: 100%;
	max-width: 1140px;
	margin: 0 auto;
}
.single-product__element {
	background: #FFFFFF;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
	border-radius: 7px; 
	padding: 25px;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end; 
	margin-bottom: 50px;
}
.single-product__col {
	width: 50%;
}
.single-product__title {
	font-style: normal;
	font-weight: normal;
	font-size: 24px;
	line-height: 24px;
	color: #461B0B;
	margin: 0 0 20px;
}
.single-product__image {
	margin-right: 40px;
	width: 200px;
}
.single-product__image img {
	display: block; 
	max-width: 100%;
	filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
	border-radius: 25px; 
	margin-bottom: 30px;
}
.single-product__image span {
	display: block; 
	font-size: 14px;
	line-height: 20px;
	color: #000000;
	margin: 0;
	font-weight: normal;
}
.single-product__image p {
	display: block; 
	font-size: 16px;
	line-height: 22px;
	color: #000000;
	margin: 0;
	font-weight: normal;
}
.single-product__contains ul {
	padding: 0;
	margin: 0;
	list-style: none;
}
.single-product__full-content {
	display: flex; 
	flex-wrap: wrap;
}
.single-product__text {
	width: calc(100% - 240px);
}
.single-product__contains ul li {
	display: flex;
	width: 100%;
	max-width: 400px; 
	flex-wrap: wrap;
	justify-content: space-between; 
	margin: 0 0 7px;
}
.single-product__contains ul li p {
	min-width: 180px;
}
.single-product__contains ul li p,
.single-product__contains ul li strong  {
	font-size: 14px; 
	line-height: 20px;
	color: #000000; 
	margin: 0; 
	font-weight: normal;
}
.single-product__contains ul li  span {
	color: #737373; 
	padding: 0 10px;
	font-size: 14px; 
	line-height: 20px;
}
.single-product__actions {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}
.single-product__action-add-to-cart button {
	display: block;
	width: 160px;
	text-align: center;
	line-height: 40px;
	transition: all 0.5s;
	font-style: normal;
	font-weight: normal;
	font-size: 16px;
	color: #FDFAE6;
	background: #461B0B;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
	border-radius: 7px;
	padding-bottom: 2px;
	text-decoration: none; 
	border: none; 
	cursor: pointer;
}
.single-product__action-add-to-cart button:focus,
.single-product__action-add-to-cart button:active,
.single-product__action-add-to-cart button:hover {
	outline: none;
}
.single-product__actions {
	width: 100%;
	padding-top: 30px;
}
.single-product__action-amounts {
	display: flex; 
	flex-wrap: wrap;
	align-items: center;
}
.single-product__action-amounts p {
	font-style: normal;
	font-weight: normal;
	font-size: 20px;
	line-height: 26px;
	margin: 0;
	color: #000000; 
	margin-right: 20px;
}
.single-product__action-calc {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.single-product__action-calc button {
	border: none;
	background-color: transparent; 
	width: 24px;
	height: 24px;
	justify-content: center;
	align-items: center;
	display: flex; 
	cursor: pointer; 
	margin: 0 5px;
}
.single-product__action-calc input {
	background: #FFFFFF;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25); 
	width: 36px;
	height: 24px; 
	padding: 0;
	text-align: center; 
	border: none; 
	font-size: 14px;
	line-height: 24px; 
	color: #000000;
}
.single-product__action-calc input::-webkit-outer-spin-button,
.single-product__action-calc input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Firefox */
.single-product__action-calc input[type=number] {
	-moz-appearance: textfield;
}
.single-product__action-calc input:focus,
.single-product__action-calc input:active,
.single-product__action-calc input:hover {
	outline: none;
}
.single-product__action-calc button:focus,
.single-product__action-calc button:active,
.single-product__action-calc button:hover {
	outline: none;
}
@media screen and (max-width: 1200px) {
	.single-product__col {
		width: 100%;
		max-width: 100%;
	}
}
@media screen and (max-width: 768px) {
	.single-product__full-content {
		display: block;
	}
	.single-product__element {
		padding: 20px;
	}
	.single-product__image {
		margin: 0;
	}
	.single-product__image {
		width: 100%;
	}
	.single-product__text {
		width: 100%;
		margin-top: 30px;
	}
}
@media screen and (max-width: 550px) {
	.single-product__action-calc {
		padding: 30px 0;
	}
}
/* End Single Product */

/* Start Cart Review Section */
.cart-review {
	padding: 50px 15px;
	background: #FDFAE6;
}
.cart-review__container {
	width: 100%;
	max-width: 1140px;
	margin: 0 auto; 
	display: flex; 
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}
.cart-review__total-amount, 
.cart-review__total-price {
	display: flex; 
	padding: 5px 0;
}
.cart-review__total-amount p, 
.cart-review__total-price p {
	min-width: 200px;
}
.cart-review__total-amount strong, 
.cart-review__total-price strong {
	font-weight: normal;
}
.cart-review__info-go-to-cart a {
	display: block;
	width: 180px;
	text-align: center;
	line-height: 40px;
	transition: all 0.5s;
	font-style: normal;
	font-weight: normal;
	font-size: 16px;
	color: #FDFAE6;
	background: #E57C06;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
	border-radius: 7px;
	padding-bottom: 2px;
	text-decoration: none;
}
.empty-cart {
	text-align: center;
	padding: 300px 0;
	font-weight: normal;
	font-size: 24px;
	line-height: 24px;
	color: #461B0B;
}
@media screen and (max-width: 475px) {
	.cart-review__info-go-to-cart a  {
		margin-top: 30px;
	}
}
.CARTminusItemFormCart,
.minusItemFormCart,
.candieMinus,
.packageMinus {
	background-image: url("../img/products/minus.png"); 
	background-position: 50% 50%;
	background-size: 9px 3px; 
	background-repeat: no-repeat;
}
.CARTplusItemFormCart,
.plusItemFormCart,
.candiePlus,
.packagePlus {
	background-image: url("../img/products/plus.png"); 
	background-position: 50% 50%;
	background-size: 15px 15px; 
	background-repeat: no-repeat;
}
/* End Cart Review Section */

/* Start Create Package */
.create-package {
	padding: 30px 15px 30px;
}
.create-package__container {
	width: 100%;
	max-width: 1140px;
	margin: 0 auto;
}
.create-package__tab-links ul {
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex; 
	flex-wrap: wrap;
}
.create-package__tab-links ul li {
	margin-right: 30px;
	font-style: normal;
	font-weight: normal;
	font-size: 14px;
	line-height: 26px;
	color: #000000;
	display: flex;
	align-items: center;
}
.create-package__tab-links ul li span {
	color: #ffffff;
	display: block;
	width: 20px;
	height: 20px;
	line-height: 20px;
	text-align: center;
	border-radius: 50%; 
	font-size: 12px;
	background-color: #BCBCBC; 
	margin-right: 10px;
}
.create-package__tab-links ul li span.active  {
	background-color: #E57C06;
}
.create-package__tab-links ul li:last-child {
	margin-right: 0;
}
.create-package__tab {
	display: none;
}
.create-package__tab.active {
	display: block;
}
.create-package__candies-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding-top: 40px; 
	align-items: flex-start;
}
.create-package__candies-item {
	position: relative;
	width: calc(50% - 20px);
}
.create-package__candies-item {
	margin-bottom: 40px;
}
.create-package__candies-item h3 {
	font-style: normal;
	font-weight: normal;
	font-size: 16px;
	line-height: 40px;
	padding: 0 15px; 
	background: #461B0B;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
	border-radius: 7px;
	color: #FDFAE6; 
	cursor: pointer; 
	position: relative;
}
.create-package__candies-item h3:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
	background-image: url("../img/products/arrow-bottom.png");
	background-position: 50% 50%;
	background-size: 10px 6px; 
	background-repeat: no-repeat;
	width: 10px; 
	height: 6px;
}
.create-package__candies-item h3.active:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
	background-image: url("../img/products/arrow-top.png");
	background-position: 50% 50%;
	background-size: 10px 6px; 
	background-repeat: no-repeat;
	width: 10px; 
	height: 6px;
}
.create-package__candies-item {
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
	border-radius: 7px;
	background: #FFFFFF;
}
.create-package__candies-item-items-list ul {
	padding: 15px 15px;
	margin: 0;
	list-style: none;
}
.create-package__candies-item-items-list ul li {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 10px 0;
}
.create-package__candies-item-image {
	width: 30px;
	height: 30px; 
	border-radius: 50%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 50% 50%; 
	margin-right: 25px;
}
.create-package__candies-item-title {
	font-size: 16px;
	line-height: 20px;
	color: #000000; 
	min-width: 240px;
}
.create-package__candies-item-mark {
	min-width: 100px; 
	font-size: 16px;
	line-height: 20px;
	color: #000000; 
	text-align: center;
}
.create-package__candies-item-items-list {
	display: none;
}
.create-package__candies-item-items-list .create-package__candies-item-mark {
	display: none;
}
.create-package__candies-item-items-list li .create-package__candies-item-title {
	width: calc(100% - 160px);
}
.lity {
	z-index: 999999999 !important;
}
.lity-wrap {
	z-index: 999999999 !important;
}
.lity-content img {
	background-color: #ffffff;
}
@media screen and (max-width: 1200px) {
	.create-package__candies-item {
		width: 100%;
	}
}
@media screen and (max-width: 768px) {
	.create-package__tab-links ul li {
		margin-right: 15px;
	}
	.create-package__candies-item-image {
		margin-right: 10px;
	}
	.create-package__candies-item-title {
		font-size: 12px;
		min-width: 120px;
	}
	.create-package__candies-item-items-list ul {
		padding: 10px;
	}
	.create-package__candies-item-mark {
		font-size: 12px;
		min-width: 40px;
	}
	.single-product__action-calc input {
		font-size: 12px;
		width: 24px;
	}
	.single-product__action-calc button {
		width: 14px; 
		margin: 0 4px;
	}
	.create-package .single-product__action-calc {
		padding-top: 0;
		padding-bottom: 0;
	}
	.create-package__candies-item {
		margin-bottom: 30px;
	}
}
/* End Create Package */

.cstep {
	display: none;
}
.cstep.active {
	display: block;
}
.create-package__candies-item-items-packages {
	padding: 40px 40px 20px; 
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
}

.create-package__candies-item-items-packages-item {
	width: 100%;
	max-width: 25%;
	padding: 20px;
	margin-bottom: 20px;
}
.create-package__candies-item-items-packages-item-image {
	position: relative;
	max-width: 120px;
	margin: 0 auto;
	display: block;
}
.create-package__candies-item-items-packages-item-image img {
	display: block;
	max-width: 100%;
	margin: 0 auto 15px;
	filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
	border-radius: 25px; 
	cursor: pointer; 
	max-height: 120px;
}
.create-package__candies-item-items-packages-item.active .create-package__candies-item-items-packages-item-image img {
	filter: drop-shadow(0px 0px 5px #E57C06);
}
.create-package__candies-item-items-packages-item-image span {
	position: absolute;
	top: 15px;
	padding: 2px 4px;
	right: -20px;
	display: block;
	font-style: normal;
	font-weight: normal;
	font-size: 12px;
	line-height: 16px;
	color: #000000;
	background: #FDFAE6;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	border-radius: 10px;
}
.create-package__candies-item-items-packages-item p {
	text-align: center;
	display: block;
	font-size: 16px;
	line-height: 24px;
	text-decoration: none;
	color: #000000;
}
.create-package__candies-item-items-packages-item-image a {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 22px;
	height: 22px;
	background-color: #461B0B;
	border-radius: 4px; 
	display: block; 
	text-decoration: none;
}
.create-package__candies-item-items-packages-item-image a svg {
	width: 16px;
	height: 12px;
	fill: #ffffff;
	display: block;
	margin: 5px auto;
}
*[data-lity] {
	cursor: pointer;
}
@media screen and (max-width: 1140px) {
	.create-package__candies-item-items-packages-item {
		max-width: 50%;
	}
}
@media screen and (max-width: 768px) {
	.create-package__candies-item-items-packages-item {
		max-width: 100%;
	}
}

.create-package__submit-all {
	background: #FFFFFF;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
	border-radius: 7px;
	padding: 20px 20px 40px;
	margin-top: 40px; 
	display: flex;
	flex-wrap: wrap;
}
.create-package__submit-all-col {
	width: 33.33333%; 
	padding-right: 60px;
}
.create-package__submit-all h4 {
	display: block;
	font-size: 18px;
	line-height: 24px;
	text-decoration: none;
	color: #000000; 
	font-weight: normal; 
	margin: 0 0 20px;
}
.create-package__submit-all input[type="email"],
.create-package__submit-all input[type="text"] {
	border: none;
	border-bottom: 0.75px solid #BCBCBC;
	padding: 10px;
	font-size: 16px;
	line-height: 20px;
	color: #000000;
	margin-bottom: 15px;
	display: block;
	width: 100%;
}
.wpcf7 form .wpcf7-response-output {
	margin: 10px 0 0 !important; 
	padding: 0 !important; 
	font-size: 14px !important; 
	line-height: 20px !important;
	border: none !important;

}
.create-package__submit-all input[type="text"] {
	margin-bottom: 40px;
}
.create-package__submit-all textarea {
	display: block;
	width: 100%;
	border: 1px solid #BCBCBC;
	box-sizing: border-box;
	border-radius: 7px; 
	resize: none;
	min-height: 120px;
	padding: 10px 10px;
	font-size: 14px;
	line-height: 20px;
	color: #000000;
}
.create-package__submit-all input[type="email"]:focus,
.create-package__submit-all input[type="text"]:focus,
.create-package__submit-all input[type="email"]:active,
.create-package__submit-all input[type="text"]:active {
	outline: none;
}
.create-package__submit-all textarea:focus,
.create-package__submit-all textarea:active {
	outline: none;
}
.create-package__submit-all {
	margin-bottom: 60px;
}
.make-a-print {
	padding-top: 20px;
	text-align: right;
}
.make-a-print input[type="submit"] {
	display: block;
	width: 180px;
	text-align: center;
	line-height: 40px;
	transition: all 0.5s;
	font-style: normal;
	font-weight: normal;
	font-size: 16px;
	color: #FDFAE6;
	background: #E57C06;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
	border-radius: 7px;
	padding-bottom: 2px;
	text-decoration: none; 
	border: none;
}
.make-a-print input[type="submit"]:focus,
.make-a-print input[type="submit"]:active {
	outline: none;
}
.make-a-print a {
	margin-bottom: 20px;
	display: block;
	font-size: 16px;
	line-height: 24px;
	text-decoration: underline;
	color: #000000;
	font-weight: normal;
	margin: 0 0 20px;
}
.wpcf7-form > p {
	display: flex;
	justify-content: flex-end;
}
@media screen and (max-width: 1140px) {
	.create-package__submit-all-col {
		width: 50%;
	}
	.make-a-print {
		text-align: left;
	}
	.make-a-print-submit {
		justify-content: flex-start;
	}
}
@media screen and (max-width: 768px) {
	.create-package__submit-all-col {
		width: 100%;
		padding-right: 0;
	}
	.make-a-print {
		text-align: left;
	}
	.make-a-print-submit {
		justify-content: flex-start;
	}
	.create-package__submit-all {
		margin-bottom: 0;
	}
}
.sub-categories {
	padding: 0 0 30px;
}
.sub-categories__container {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	max-width: 1170px;
	margin: 0 auto;
}
.sub-categories__col {
	width: 25%;
	max-width: 300px;
	padding: 20px 15px;
}
.sub-categories__item {
	display: block;
	background: #FDFAE6;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
	border-radius: 7px;
	padding: 15px;
}
.sub-categories__image {
	display: block;
	width: 100%;
	min-height: 240px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	margin-bottom: 10px;
}
.sub-categories__item a {
	display: block;
	font-size: 18px;
	line-height: 24px;
	text-decoration: none;
	color: #000000;
}
@media screen and (max-width: 768px) {
	.sub-categories__container {
		justify-content: center;
	}
	.sub-categories__col {
		width: 50%;
	}
}
@media screen and (max-width: 600px) {
	.sub-categories__col {
		width: 100%;
	}
}
div.wpcf7 .ajax-loader {
	display: none !important;
}

.wpcf7-form-control-wrap.your-email,
.wpcf7-form-control-wrap.your-phone,
.wpcf7-form-control-wrap.your-text {
	display: none;
}
.wpcf7-form br {
	display: none;
}
@media screen and (max-width: 768px) {
	.wpcf7-form > p {
		justify-content: flex-start;
	}
}

.fixed-btn {
	display: block; 
	width: 60px; 
	height: 60px; 
	border-radius: 50%; 
	background-color: #E57C06; 
	bottom: 20px; 
	right: 20px;  
	padding: 15px; 
	text-decoration: none; 
	position: fixed;
	    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.fixed-btn svg {
	width: 30px !important; 
	height: 30px !important; 
	display: block; 
	fill: #ffffff;
}
.bundle__item-header-buy button {
	position: relative;
}
.bundle__item-header-buy button:before {
	position: absolute;
	top: 50%; 
	left: 50%; 
	transform: translate(-50%, -50%);
	width: 22px;  
	height: 22px; 
	background-color: #461B0B; 
	border-radius: 4px; 
	content: ""; 
	transition: all 0.5s; 
	opacity: 0;
}
.bundle__item-header-buy button:after {
	position: absolute;
	top: 50%; 
	left: 50%; 
	transform: translate(-50%, -50%);
	width: 10px; 
	height: 10px; 
	background-color: transparent; 
	border-radius: 50%; 
	content: ""; 
	border: 3px solid #ffffff;
	border-top: 3px solid #E57C06;
	transition: all 0.5s;
	animation: spin 1s infinite;
	transition: all 0.5s; 
	opacity: 0;
}
.bundle__item-header-buy button.active:before,
.bundle__item-header-buy button.active:after,
.bundle__item-header-buy button.active:before,
.bundle__item-header-buy button.active:after {
	opacity: 1;
}
@media screen and (max-width: 768px) {
	.single-product__contains ul li span {
		display: none;
	}
}