/* GENERAL */
body {
	width: 100%;
    font-size: 0;
}

.overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: calc(100vw);
	height: calc(100vh);
	background-color: #000;
}

.overlay-mobile-menu {
	opacity: 0;
	visibility: hidden;
	position: fixed;
	top: -50%;
	right: -50%;
	width: 200%;
	height: 200%;
	background: rgba(0, 0, 0,.8);
	z-index: 100;
}

.overlay.visible {
	display: block;
	opacity: 0.5;
	z-index: 11;
}

.clear-both {
	clear: both;
}

.stars .star {
	display: inline-block;
	vertical-align: middle;
	width: 24px;
	height: 24px;
	background: url('../images/icons/icon-star-pale.svg') no-repeat center;
}

.stars .star[data-filled='1'] {
	background: url('../images/icons/icon-star-accent1.svg') no-repeat center;
}

.stars .star.small {
	display: inline-block;
	vertical-align: middle;
	width: 16px;
	height: 16px;
	background: url('../images/icons/icon-star-pale-small.svg') no-repeat center;
}

.stars .star.small[data-filled='1'] {
	background: url('../images/icons/icon-star-accent1-small.svg') no-repeat center;
}

/* HEADER - MIDDLE */
header {
	position: relative;
	background: #FFD940;
	z-index: 40;
}

header .inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	max-width: 1330px;
	padding: 0 15px;
	height: 96px;
	margin: 0 auto;
}

header .inner .logo {
	width: fit-content;
}

header .inner .logo img {
	width: 180px;
	aspect-ratio: 13 / 4;
}

header .inner .search-box {
	position: relative;
	flex: 0 1 530px;
	margin: 0 20px;
}

header .inner .search-box #header-search-field {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	z-index: 11;
	width: 100%;
	height: 56px;
	padding: 0 20px;
	border: 0 none;
	border-radius: 10px;
	color: #231f20;
	box-shadow: 0 3px 10px -5px rgba(0,0,0,0.5);
}

header .inner .search-box #header-search-field:active,
header .inner .search-box #header-search-field:focus {
	border: 0 none;
}

header .inner .search-box #header-search-field::-webkit-input-placeholder {
	color: #231f20;
	font-family: 'Rubik', sans-serif;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 14px;
}

header .inner .search-box #header-search-field:-moz-placeholder {
	color: #231f20;
	font-family: 'Rubik', sans-serif;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 14px;
}

header .inner .search-box #header-search-field::-moz-placeholder {
	color: #231f20;
	font-family: 'Rubik', sans-serif;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 14px;
}

header .inner .search-box #header-search-field:-ms-input-placeholder {
	color: #231f20;
	font-family: 'Rubik', sans-serif;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 14px;
}

header .inner .search-box #header-search-button {
	position: absolute;
	background: url('../images/icons/icon-search-dark.svg');
	width: 24px;
	height: 24px;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
	z-index: 50;
	cursor: pointer;
}

header .inner .search-box .search-wrapper {
	display: none;
	position: absolute;
	overflow-y: auto;
	background: #fff;
	max-height: 75vh;
	margin-top: 10px;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	box-shadow: 0 15px 30px 0 rgba(0,0,0,0.25);
	-webkit-box-shadow: 0 15px 30px 0 rgba(0,0,0,0.25);
	-moz-box-shadow: 0 15px 30px 0 rgba(0,0,0,0.25);
	padding: 25px 20px;
	width: 100%;
}

header .inner .header-icons {
	min-width: 420px;
	text-align: right;
}

header .inner .header-icons .order-by-phone {
	display: inline-block;
	vertical-align: middle;
}

header .inner .header-icons .order-by-phone .icon {
	display: inline-block;
	vertical-align: middle;
	position: relative;
	width: 48px;
	height: 48px;
	background: #000;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
}

header .inner .header-icons .order-by-phone .icon:after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 24px;
	height: 24px;
	background: url('../images/icons/icon-phone-white.svg');
	transform: translate(-50%, -50%);
}

header .inner .header-icons .order-by-phone .info {
	display: inline-block;
	vertical-align: middle;
	margin-left: 10px;
	text-align: left;
}

header .inner .header-icons .order-by-phone .info .phone,
header .inner .header-icons .order-by-phone .info .text {
	display: block;
}

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

	header .inner .header-icons {
		min-width: 240px;
	}

	header .inner .header-icons .order-by-phone .info {
		display: none;
	}

	header .inner .header-icons .customer-profile {
		margin-left: 10px !important;
	}
}

header .inner .header-icons .header-cart-wrapper {
	position: relative;
	display: inline-block;
	vertical-align: top;
}

header .inner .header-icons .customer-profile {
	display: inline-block;
	position: relative;
	vertical-align: middle;
	width: 48px;
	height: 48px;
	margin-left: 30px;
	background: #000;
	border-radius: 50%;
	cursor: pointer;
}

header .inner .header-icons .customer-profile.is-logged {
	background: #00ADEE;
}

header .inner .header-icons .customer-profile.is-logged-fill {
	background: #00ADEE;
	color: #FFFFFF;
	font-family: 'Rubik', sans-serif;
	font-size: 18px;
	font-weight: 500;
	letter-spacing: -0.25px;
	line-height: 50px;
	text-align: center;
	text-transform: uppercase;
}

header .inner .header-icons .customer-profile:after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 24px;
	height: 24px;
	transform: translate(-50%, -50%);
	background: url('../images/icons/icon-user-white.svg');
}

header .inner .header-icons .customer-profile.is-logged-fill:after {
	display: none;
}

header .inner .header-icons .favourites {
	display: inline-block;
	position: relative;
	vertical-align: middle;
	width: 48px;
	height: 48px;
	margin-left: 10px;
	background: #000;
	border-radius: 50%;
}
header .inner .header-icons .favourites:after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 24px;
	height: 24px;
	transform: translate(-50%, -50%);
	background: url('../images/icons/icon-heart-white.svg');
}

header .inner .header-icons .favourites .favourites-counter {
	position: absolute;
	top: -2px;
	right: -6px;
	width: 21px;
	height: 21px;
	background: #00ADEE;
	border-radius: 50%;
	text-align: center;
	line-height: 21px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
}

header .inner .header-icons .cart {
	display: inline-block;
	position: relative;
	vertical-align: middle;
	width: 48px;
	height: 48px;
	margin-left: 10px;
	background: #fff;
	border-radius: 50%;
	z-index: 10;
}

header .inner .header-icons .cart:after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 24px;
	height: 24px;
	transform: translate(-50%, -50%);
	background: url('../images/icons/icon-cart-dark.svg');
}

header .inner .header-icons .cart .cart-counter {
	position: absolute;
	top: -2px;
	right: -6px;
	width: 21px;
	height: 21px;
	background: #00ADEE;
	border-radius: 50%;
	text-align: center;
	line-height: 21px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
}

/* Header - Cart dropdown */
header .inner .header-icons .header-cart-wrapper .cart-dropdown {
	position: absolute;
	top: 55px;
	right: 0;
	z-index: 1;
	display: none;
	width: 365px;
	padding: 15px 15px 30px 15px;
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 40px 50px 0 rgba(0,0,0,0.25);
}

header .inner .header-icons .header-cart-wrapper .cart-dropdown:before {
	content: "";
	position: absolute;
	top: -27px;
	right: 0;
	width: 48px;
	height: 37px;
	background-color: #fff;
	border-right: none;
	border-bottom: none;
}

header .inner .header-icons .header-cart-wrapper .cart-dropdown .item {
	padding: 20px 15px;
	font-size: 0;
	color: #414042;
	background: #F7F7F7;
	margin-bottom: 10px;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	text-align: left;
}

header .inner .header-icons .header-cart-wrapper .cart-dropdown .item:last-child {
	margin-bottom: 0;
}

header .inner .header-icons .header-cart-wrapper .cart-dropdown .item > div {
	display: inline-block;
	vertical-align: top;
}

header .inner .header-icons .header-cart-wrapper .cart-dropdown .item .image {
	width: 60px;
	height: 60px;
	margin-right: 10px;
}

header .inner .header-icons .header-cart-wrapper .cart-dropdown .item .image img {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
}

header .inner .header-icons .header-cart-wrapper .cart-dropdown .item .info {
	width: calc(100% - 70px);
	height: 100%;
	line-height: initial;
	font-size: 12px;
}
header .inner .header-icons .header-cart-wrapper .cart-dropdown .item .info .product-name {
	display: block;
	width: 100%;
	margin-bottom: 10px;
	padding-bottom: 15px;
	border-bottom: 1px solid #E5E5E4;
}

header .inner .header-icons .header-cart-wrapper .cart-dropdown .item .qty {
	display: inline-block;
	vertical-align: middle;
	width: calc(30% - 7px);
	margin-right: 10px;
	white-space: nowrap;
}

header .inner .header-icons .header-cart-wrapper .cart-dropdown .item .qty .configurable-options,
header .inner .header-icons .header-cart-wrapper .cart-dropdown .item .qty span {
	display: inline-block;
}

header .inner .header-icons .header-cart-wrapper .cart-dropdown .item .dropdown-cart-price-wrapper {
	width: 20%;
	height: 100%;
	line-height: initial;
	font-size: 12px;
	font-weight: 700;
}

header .inner .header-icons .header-cart-wrapper .cart-dropdown .item .cell {
	display: inline-block;
	width: calc(70% - 7px);
	text-align: right;
	vertical-align: middle;
}

header .inner .header-icons .header-cart-wrapper .cart-dropdown .item .cell .price {
	display: inline-block;
	vertical-align: middle;
}
header .inner .header-icons .header-cart-wrapper .cart-dropdown .item .cell .old-price {
	display: inline-block;
	vertical-align: middle;
	margin-right: 5px;
	margin-top: -3px;
}

header .inner .header-icons .header-cart-wrapper .cart-dropdown .totals {
	margin-top: 30px;
	text-align: right;
}

header .inner .header-icons .header-cart-wrapper .cart-dropdown .to-the-order {
	display: block;
	margin-top: 30px;
	margin-bottom: 10px;
	padding: 18px 10px 17px;
	background: #239B56;
	border-radius: 24px;
	text-align: center;
	cursor: pointer;
	transition: background-color 0.2s ease-in-out;

}

header .inner .header-icons .header-cart-wrapper .cart-dropdown .to-the-order:hover {
	background: #4a834a;
}

header .inner .header-icons .header-cart-wrapper .cart-dropdown .checkout {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 48px;
	background-color: #fff;
	border: 2px solid #E5E5E4;
	border-radius: 24px;;
}

header .inner .header-icons-mobile {
	display: none;
	text-align: right;
}

header .inner .header-icons-mobile .search {
	display: inline-block;
	position: relative;
	width: 32px;
	height: 32px;
	background: #000;
	border-radius: 50%;
	cursor: pointer;
	vertical-align: middle;
}

header .inner .header-icons-mobile .search:after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 16px;
	height: 16px;
	background: url('../images/icons/icon-search-white-small.svg');
}

header .inner .header-icons-mobile .my-petmall {
	display: inline-block;
	vert-align: middle;
	margin-left: 10px;
	cursor: pointer;
}

header .inner .header-icons-mobile .my-petmall:before {
	content: '';
	display: inline-block;
	vertical-align: middle;
	width: 32px;
	height: 32px;
	background-color: #fff;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	background-image: url('../images/icons/icon-paw-dark.svg');
	background-repeat: no-repeat;
	background-position: center;
}

header .inner .header-icons-mobile .my-petmall .text {
	display: inline-block;
	vertical-align: middle;
	margin-left: 7px;
}

.autoship-discount-label {
	display: inline-block;
	padding: 1px 7px 0 5px;
	background: #E74C3C;
	border-radius: 12px;
	color: #FFFFFF;
	font-weight: 600;
}

.autoship-bar {
	display: block;
	padding: 14px 20px 12px;
	border-bottom: 1px solid #E5E5E4;
	text-align: center;
	cursor: pointer;
}

.autoship-bar > .content {
	position: relative;
	display: inline-block;
	padding-left: 34px;
	padding-right: 30px;
}

.autoship-bar > .content:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	display: block;
	width: 24px;
	height: 24px;
	background: #FFD940 url('../images/icons/icon-autoship-dark.svg') center no-repeat;
	background-size: 18px;
	border-radius: 28px;
	transform: translateY(-50%);
}

.autoship-bar > .content span {
	display: inline-block;
	vertical-align: middle;
}

.autoship-bar > .content:after {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	display: inline-block;
	vertical-align: middle;
	width: 20px;
	height: 20px;
	background: #231F20 url('../images/icons/icon-chevron-right-white-small.svg') center no-repeat;
	border-radius: 50%;
	transform: translateY(-50%);
}

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

	.autoship-bar {
		text-align: left;
	}

	.autoship-bar > .content {
		display: block;
	}
}

.mobile-search {
	position: fixed;
	z-index: 120;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100vh;
	padding: 15px;
	background: #fff;
	opacity: 0;
	visibility: hidden;
}

.mobile-search .close-button {
	position: absolute;
	top: 30px;
	right: 15px;
	width: 24px;
	height: 24px;
	background: url('../images/icons/icon-times-dark.svg');
	cursor: pointer;
	z-index: 5;
}

.mobile-search .search-box-wrapper .search-box {
	position: relative;
}

.mobile-search .search-box-wrapper .search-box input[type='text'] {
	width: calc(100% - 39px);
	height: 56px;
	padding: 15px 15px 15px 50px;
	border: 1px solid transparent;
	background: #F7F7F7;
	transition: 0.3s;
}

.mobile-search .search-box-wrapper .search-box input[type='text']:focus,
.mobile-search .search-box-wrapper .search-box input[type='text']:active {
	background: #fff;
	border-color: #231F20;
	border-radius: 5px;
	box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.15);
}

.mobile-search .search-box-wrapper .search-box button {
	position: absolute;
	top: 15px;
	left: 15px;
	width: 24px;
	height: 24px;
	background: url('../images/icons/icon-search-dark.svg');
}

.mobile-search .search-box-wrapper .search-box input[type='text']::-webkit-input-placeholder {
	color: #231f20;
	font-family: 'Rubik', sans-serif;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 14px;
}

.mobile-search .search-box-wrapper .search-box input[type='text']:-moz-placeholder {
	color: #231f20;
	font-family: 'Rubik', sans-serif;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 14px;
}

.mobile-search .search-box-wrapper .search-box input[type='text']::-moz-placeholder {
	color: #231f20;
	font-family: 'Rubik', sans-serif;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 14px;
}

.mobile-search .search-box-wrapper .search-box input[type='text']:-ms-input-placeholder {
	color: #231f20;
	font-family: 'Rubik', sans-serif;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 14px;
}

#auto-suggest-box {
	position: absolute;
	display: block;
	overflow: hidden;
	top: 34px;
	left: 1px;
	width: 100%;
	padding-top: 30px;
	background: transparent;
}

.search-wrapper {
	padding: 10px;
	width: 100%;
}

.mobile-search .search-wrapper {
	height: calc(100vh - 147px);
	margin-top: 20px;
	padding: 0;
	overflow-x: hidden;
	overflow-y: scroll;
}

.mobile-search .search-inner-wrapper {
	margin-bottom: 30px;
}

.search-inner-wrapper .title {
	margin-bottom: 14px;
	display: block;
}

.search-inner-wrapper .search-collection a {
	position: relative;
	padding: 8px 0 8px 35px;
	margin: 0;
	display: inline-block;
	width: 100%;
}

.search-inner-wrapper .popular-searches a:before {
	content: '';
	position: absolute;
	top: 10px;
	left: 10px;
	display: block;
	width: 16px;
	height: 16px;
	background: url('../images/icons/icon-analytics-dark-small.svg');
}

.search-inner-wrapper .title-mt-20 {
	margin-top: 20px;
}

.search-inner-wrapper .categories a,
.search-inner-wrapper .brands a {
	width: calc(100% + 20px);
	margin-left: -10px;
	padding-left: 35px;
	border-radius: 5px;
	padding-right: 10px;
}

.search-inner-wrapper .categories a:hover,
.search-inner-wrapper .brands a:hover {
	background: #F7F7F7;
}

.search-inner-wrapper .categories a:before,
.search-inner-wrapper .brands a:before {
	content: '';
	position: absolute;
	top: 10px;
	left: 10px;
	display: block;
	width: 16px;
	height: 16px;
	background: url('../images/icons/icon-search-dark-small.svg');
}

.search-inner-wrapper .products a {
	display: block;
	width: calc(100% + 20px);
	padding: 10px;
	margin-left: -10px;
}

.search-inner-wrapper .products a:hover {
	background: #F7F7F7;
}

.search-inner-wrapper .products a > * {
	display: inline-block;
	vertical-align: top;
}

.search-inner-wrapper .products a img {
	width: 60px;
	margin-right: 10px;
	aspect-ratio: 1 / 1;
}

.search-inner-wrapper .products a .content {
	width: calc(100% - 70px);
}

.search-inner-wrapper .products a .content .title {
	margin-bottom: 7px;
}

.search-inner-wrapper .products a .content .prices > * {
	display: inline-block;
}

.search-inner-wrapper .products a .content .prices .is-old {
	letter-spacing: -1px;
	font-weight: 400;
	margin-left: 3px;
	text-decoration: line-through;
}

.header-links {
	position: relative;
	width: 100%;
	height: 56px;
	background: #231F20;
	z-index: 20;
}

.header-links .inner {
	display: block;
	width: 100%;
	height: 100%;
	max-width: 1300px;
	margin: 0 auto;
}

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

	.header-links .inner {
		width: calc(100% - 30px);
	}
}

.header-links .inner ul {
	display: inline-flex;
	align-items: center;
	height: 100%;
}

.header-links .inner ul li {
	display: inline-block;
	width: -moz-fit-content;
	width: fit-content;
	margin-right: 20px;
	cursor: pointer;
}

.header-links .inner ul li.categories {
	position: relative;
	background: #fff;
	padding: 9px 20px;
	border-radius: 10px;
}

.header-links .inner ul li.categories:before {
	content: '';
	display: inline-block;
	vertical-align: middle;
	width: 24px;
	height: 24px;
	background: url('../images/icons/icon-bars-dark.svg');
	margin-right: 10px;
}

.header-links .inner ul li.categories.active:after {
	content: '';
	position: absolute;
	bottom: -7px;
	left: 0;
	display: block;
	width: 100%;
	height: 17px;
	background: #ffffff;
}

.header-links .inner ul li.categories .label {
	display: inline-block;
	vertical-align: middle;
	line-height: 15px;
	user-select: none;
}

.header-links .inner ul li a {
	line-height: 15px;
}

.header-links .inner .my-petmall {
	display: inline-flex;
	height: 100%;
	float: right;
	align-items: center;
}

.header-links .inner .my-petmall:before {
	content: '';
	display: inline-block;
	vertical-align: middle;
	width: 32px;
	height: 32px;
	background-color: #fff;
	margin-right: 10px;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	background-image: url('../images/icons/icon-paw-dark.svg');
	background-repeat: no-repeat;
	background-position: center;
}

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

	.header-links .inner .my-petmall {
		display: none;
	}
}

.mobile-bottom-bar {
	display: none;
}

.navigation-menu {
	position: absolute;
	left: calc((100% - 1300px) / 2);
	z-index: 10;
	display: flex;
	width: 310px;
	max-width: 1300px;
	min-height: 400px;
	opacity: 0;
	visibility: hidden;
	transform: translate(0px, -152px);
}

.navigation-menu[data-is-opened='1'] {
	opacity: 1;
	visibility: visible;
}

.navigation-menu.mega-menu-wrapper-is-opened {
	width: 100%;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	box-shadow: -5px 0 15px 7px rgba(0,0,0,0.15);
}

.navigation-menu.mega-menu-wrapper-is-opened .navigation {
	border-bottom-right-radius: 0;
	box-shadow: none;
}

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

	.navigation-menu {
		left: 15px;
		max-width: calc(100% - 30px);
	}
}

.navigation-menu .navigation {
	flex: 0 0 310px;
	min-height: 100%;
	padding: 17px 0 17px 10px;
	background: #fff;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	box-shadow: -5px 0 15px 7px rgba(0, 0, 0, 0.15);
}

.navigation-menu .navigation > li {
	display: block;
	width: 100%;
	padding: 10px;
	vertical-align: top;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
	transition: background-color 0.2s ease-in-out;
	cursor: pointer;
}

.navigation-menu .navigation > li:before {
	content: '';
	display: inline-block;
	vertical-align: middle;
	width: 24px;
	height: 24px;
	margin-right: 10px;
}

.navigation-menu .navigation > li .label {
	display: inline-block;
	vertical-align: middle;
}

.navigation-menu .navigation > li[data-constant='DOGS']:before {
	background: url('../images/icons/categories/icon-dogs-dark.svg');
}

.navigation-menu .navigation > li[data-constant='DOGS'].active:before,
.navigation-menu .navigation > li[data-constant='DOGS']:hover:before {
	background: url('../images/icons/categories/icon-dogs-accent2.svg');
}

.navigation-menu .navigation > li[data-constant='CATS']:before {
	background: url('../images/icons/categories/icon-cats-dark.svg');
}

.navigation-menu .navigation > li[data-constant='CATS'].active:before,
.navigation-menu .navigation > li[data-constant='CATS']:hover:before {
	background: url('../images/icons/categories/icon-cats-accent2.svg');
}

.navigation-menu .navigation > li[data-constant='FISHES']:before {
	background: url('../images/icons/categories/icon-fishes-dark.svg');
}

.navigation-menu .navigation > li[data-constant='FISHES'].active:before,
.navigation-menu .navigation > li[data-constant='FISHES']:hover:before {
	background: url('../images/icons/categories/icon-fishes-accent2.svg');
}

.navigation-menu .navigation > li[data-constant='BIRDS']:before {
	background: url('../images/icons/categories/icon-birds-dark.svg');
}

.navigation-menu .navigation > li[data-constant='BIRDS'].active:before,
.navigation-menu .navigation > li[data-constant='BIRDS']:hover:before {
	background: url('../images/icons/categories/icon-birds-accent2.svg');
}

.navigation-menu .navigation > li[data-constant='SMALL_ANIMALS']:before {
	background: url('../images/icons/categories/icon-small-animals-dark.svg');
}

.navigation-menu .navigation > li[data-constant='SMALL_ANIMALS'].active:before,
.navigation-menu .navigation > li[data-constant='SMALL_ANIMALS']:hover:before {
	background: url('../images/icons/categories/icon-small-animals-accent2.svg');
}

.navigation-menu .navigation > li[data-constant='TERRARIUM']:before {
	background: url('../images/icons/categories/icon-terrarium-dark.svg');
}
.navigation-menu .navigation > li[data-constant='TERRARIUM'].active:before,
.navigation-menu .navigation > li[data-constant='TERRARIUM']:hover:before {
	background: url('../images/icons/categories/icon-terrarium-accent2.svg');
}

.navigation-menu .navigation > li[data-constant='PROMO']:before {
	background: url('../images/icons/categories/icon-promotion-warning.svg');
}

.navigation-menu .navigation > li[data-constant='PROMO'] .label {
	color: #E74C3C;
}

.navigation-menu .navigation > li[data-constant='PROMO'].active,
.navigation-menu .navigation > li[data-constant='PROMO']:hover {
	background: #fdedeb;
}

.navigation-menu .navigation > li.active,
.navigation-menu .navigation > li:hover {
	background: #e3f6fc;
}

.navigation-menu .navigation > li.active a,
.navigation-menu .navigation > li:hover a {
	color: #00ADEE;
}

/* NAVIGATION > MEGA MENU */
.navigation-menu .mega-menu-wrapper {
	position: relative;
	flex: 0 1 calc(100% - 310px);
	display: none;
	width: 100%;
	min-height: 100%;
	background: #fff;
	border-bottom-right-radius: 10px;
	box-shadow: -5px -4px 15px -7px rgba(0,0,0,0.15);
}

.navigation-menu.mega-menu-wrapper-is-opened .mega-menu-wrapper {
	display: block;
}

.navigation-menu .mega-menu-wrapper .child-groups-wrapper {
	position: relative;
	display: none;
	width: 100%;
	min-height: 100%;
	background-color: #fff;
	border-bottom-right-radius: 10px;
}

.navigation-menu .mega-menu-wrapper .child-groups-wrapper:after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	z-index: 10;
	width: 30%;
	height: 100%;
	background: #F7F7F7;
	border-bottom-right-radius: 10px;
}

.navigation-menu .mega-menu-wrapper .child-groups-wrapper.active {
	display: block;
	z-index: 12;
}

/* SECOND LEVEL CATEGORIES */
.navigation-menu .mega-menu-wrapper .child-groups-wrapper .child-groups {
	display: inline-flex;
	vertical-align: top;
	width: calc(100% - 30%);
	padding: 20px 25px 30px 39px;
}

.navigation-menu .mega-menu-wrapper .child-groups-wrapper .child-groups > li {
	display: inline-block;
	vertical-align: top;
	margin-right: 20px;
	margin-bottom: 20px;
	flex: 0 1 200px;
}

.navigation-menu .mega-menu-wrapper .child-groups-wrapper .child-groups > li:last-of-type {
	margin-right: 0;
}

.navigation-menu .mega-menu-wrapper .child-groups-wrapper .child-groups > li .title {
	display: block;
	margin-bottom: 12px;
}

.navigation-menu .mega-menu-wrapper .child-groups-wrapper .child-groups > li .child-categories li {
	display: block;
	margin-bottom: 7px;
}

/* THIRD LEVEL CATEGORIES */
.navigation-menu .mega-menu-wrapper .child-groups-wrapper .child-groups > li .child-categories li a:hover {
	text-decoration: underline;
}

/* BRANDS */
.navigation-menu .mega-menu-wrapper .child-groups-wrapper .brands {
	position: relative;
	z-index: 15;
	display: inline-block;
	vertical-align: top;
	width: 30%;
	padding: 20px;
}

.navigation-menu .mega-menu-wrapper .child-groups-wrapper .brands > .title {
	margin-bottom: 15px;
}

.navigation-menu .mega-menu-wrapper .child-groups-wrapper .brands > a {
	display: inline-block;
	vertical-align: top;
	width: calc(50% - 5px);
	margin-right: 10px;
	margin-bottom: 10px;
	background: #FFFFFF;
	border-radius: 10px;
	box-shadow: 0 5px 15px -7px rgba(0, 0, 0, 0.15);
	overflow: hidden;
	transition: all 0.3s ease;
}

.navigation-menu .mega-menu-wrapper .child-groups-wrapper .brands > a:nth-child(odd) {
	margin-right: 0;
}

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

	.navigation-menu .mega-menu-wrapper .child-groups-wrapper .brands > a {
		display: block;
		width: 100%;
		margin-right: 0;
	}
}

.navigation-menu .mega-menu-wrapper .child-groups-wrapper .brands > a:hover {
	box-shadow: 0 10px 20px -7px rgba(0, 0, 0, 0.20);
}

.navigation-menu .mega-menu-wrapper .child-groups-wrapper .brands > a img {
	display: block;
	width: 100%;
	border-radius: 10px;
	aspect-ratio: 72 / 41;
}

/* MOBILE MENU */
.mobile-menu {
	position: fixed;
	top: 0;
	left: -360px;
	z-index: 120;
	width: 360px;
	visibility: hidden;
	opacity: 0;
}

.mobile-menu .panels {
	position: relative;
	overflow-y: auto;
	height: 100vh;
	padding: 65px 0 18px;
	background: #fff;
}

.mobile-menu .panels .fixed-menu-header {
	position: fixed;
	display: block;
	width: 100%;
	max-width: 360px;
	left: 0;
	top: 0;
	padding: 21px 15px;
	background: #ffffff;
	border-bottom: 1px solid #E5E5E4;
	z-index: 1;
}

.mobile-menu .panels .fixed-menu-header.is-sticky {
	box-shadow: 0 -5px 15px 4px rgba(0,0,0,.25);
}

.mobile-menu .panels .panel .fixed-menu-header .back-button {
	visibility: hidden;
	position: absolute;
	top: 20px;
	left: 15px;
	width: 24px;
	height: 24px;
	background: url('../images/icons/icon-chevron-left-dark.svg');
	cursor: pointer;
}

.mobile-menu .panels .panel .fixed-menu-header  .title {
	display: block;
}

.mobile-menu .panels .fixed-menu-header .close {
	z-index: 120;
	position: absolute;
	width: 24px;
	height: 24px;
	top: 20px;
	right: 15px;
	background-image: url('../images/icons/icon-times-dark.svg');
	background-position: 50%, 50%;
	cursor: pointer;
}

.mobile-menu .panels .panel {
	padding: 0 15px;
}

.mobile-menu .panels .panel[data-has-grandchildren='0'] .back-button {
	visibility: visible;
}

.mobile-menu .panels .panel[data-has-grandchildren='0'] .title {
	width: calc(100% - 34px);
	float: right;
}

.mobile-menu .panels .panel .items {
	margin-top: 17px;
	margin-bottom: 50px;
}

.mobile-menu .panels .panel .items .item {
	position: relative;
	display: block;
	width: 100%;
	padding: 17px 0;
	cursor: pointer;
	transition: all .25s ease;
}

.mobile-menu .panels .panel[data-has-grandchildren='1'] .items .item:before {
	content: '';
	position: relative;
	top: 5px;
	display: inline-block;
	margin-right: 10px;
	width: 24px;
	height: 24px;
}

.mobile-menu .panels .panel[data-has-grandchildren='1'] .items .item[data-constant='DOGS']:before {
	background: url('../images/icons/categories/icon-dogs-dark.svg');
}

.mobile-menu .panels .panel[data-has-grandchildren='1'] .items .item[data-constant='CATS']:before {
	background: url('../images/icons/categories/icon-cats-dark.svg');
}

.mobile-menu .panels .panel[data-has-grandchildren='1'] .items .item[data-constant='FISHES']:before {
	background: url('../images/icons/categories/icon-fishes-dark.svg');
}

.mobile-menu .panels .panel[data-has-grandchildren='1'] .items .item[data-constant='BIRDS']:before {
	background: url('../images/icons/categories/icon-birds-dark.svg');
}

.mobile-menu .panels .panel[data-has-grandchildren='1'] .items .item[data-constant='SMALL_ANIMALS']:before {
	background: url('../images/icons/categories/icon-small-animals-dark.svg');
}

.mobile-menu .panels .panel[data-has-grandchildren='1'] .items .item[data-constant='TERRARIUM']:before {
	background: url('../images/icons/categories/icon-terrarium-dark.svg');
}

.mobile-menu .panels .panel[data-has-grandchildren='1'] .items .item[data-constant='PROMO'] {
	color: #E74C3C;
}

.mobile-menu .panels .panel[data-has-grandchildren='1'] .items .item[data-constant='PROMO']:before {
	background: url('../images/icons/categories/icon-promotion-warning.svg');
}

.mobile-menu .panels .panel .items .item[data-has-children='1']:after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	display: inline-block;
	width: 24px;
	height: 24px;
	background: url('../images/icons/icon-chevron-right-dark.svg') no-repeat;
	transform: translateY(-50%);
	transition: all .25s ease;
}

.mobile-menu .panels .panel .items .item[data-is-accordion='1'] > .name {
	position: relative;
	padding-right: 30px;
}

.mobile-menu .panels .panel .items .item[data-is-accordion='1'].is-opened > .name span {
	color: #008AEE;
}

.mobile-menu .panels .panel .items .item[data-is-accordion='1'] > .name:after {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	display: block;
	width: 24px;
	height: 24px;
	background: url('../images/icons/icon-chevron-right-dark.svg');
	transform: translateY(-50%) rotate(90deg);
	transition: all .25s ease;
}

.mobile-menu .panels .panel .items .item[data-is-accordion='1'].is-opened > .name:after {
	transform: translateY(-50%) rotate(-90deg);
}

.mobile-menu .panels .panel .items .item[data-is-accordion='1'] > .content {
	height: 0;
	overflow: hidden;
}

.mobile-menu .panels .panel .items .item[data-is-accordion='1'] > .content .inner {
	margin: 30px 0 0 0;
	border-left: 1px solid #E5E5E4;
}

.mobile-menu .panels .panel .items .item[data-is-accordion='1'] > .content .inner .children-item {
	position: relative;
	display: block;
	padding: 10px 0 10px 20px;
	font-size: 16px;
}

.mobile-menu .panels .panel .items .item[data-is-accordion='1'] > .content .inner .children-item:first-child {
	padding: 0 0 10px 20px;
}

.mobile-menu .panels .panel .items .item[data-is-accordion='1'] > .content .inner .children-item:last-child {
	padding: 10px 0 0 20px;
}

/* MAIN */
.main {
	position: relative;
	min-height: 410px;
	margin: 0 auto;
}

.main.is-overlaid:before {
	content: '';
	opacity: 1;
	position: absolute;
	width: 100%;
	height: calc(200% + 300px);
	top: 0;
	left: 0;
	cursor: pointer;
	background: rgba(34,34,34,.75);
	visibility: visible;
	z-index: 20;
}

/* PRODUCT GRID ITEM */
.product-grid-item {
	position: relative;
	display: inline-block;
	vertical-align: top;
	width: 100%;
	padding: 10px 10px 75px 10px;
	background: #ffffff;
	border: 1px solid transparent;
	border-radius: 10px;
	box-shadow: 0 5px 15px -7px rgba(0, 0, 0, 0.15);
	transition: box-shadow 0.2s ease-in-out;
}

.product-grid-item:hover {
	box-shadow: 0 10px 20px -7px rgba(0, 0, 0, 0.2);
}

.product-grid-item.is-special-offer {
	border-color: #FFD940;
}

.product-grid-item:not(.has-discount-label).is-autoship {
	padding-bottom: 135px;
}

.product-grid-item.has-discount-label:not(.is-autoship) {
	padding-bottom: 120px;
}

.product-grid-item:not(.has-discount-label).is-autoship {
	padding-bottom: 135px;
}

.product-grid-item.has-discount-label.is-autoship {
	padding-bottom: 165px;
}

.product-grid-item.black-friday {
	border-color: #E74C3C;
}

.product-grid-item .product-grid-item-image {
	position: relative;
	display: block;
	margin-bottom: 15px;
}

.product-grid-item .product-grid-item-image .add-to-favourites-wrapper {
	position: absolute;
	top: 0;
	left: 0;
}

.product-grid-item .product-grid-item-image .add-to-favourites-wrapper .add-to-favourites-button {
	display: block;
	width: 24px;
	height: 24px;
	background: url('../images/icons/icon-heart-pale.svg') no-repeat center;
	cursor: pointer;
}

.product-grid-item .product-grid-item-image .add-to-favourites-wrapper.added .add-to-favourites-button {
	background: url('../images/icons/icon-heart-accent2-solid.svg') no-repeat center;
}

.product-grid-item .product-grid-item-image img {
	display: block;
	max-width: 170px;
	margin: 0 auto;
	aspect-ratio: 1 / 1;
}

.product-grid-item .product-grid-item-image .labels {
	position: absolute;
	bottom: -5px;
	left: 5px;
}

.product-grid-item .product-grid-item-image .labels .label {
	display: inline-block;
	vertical-align: middle;
	padding: 4px 10px 3px;
	background: #FFD940;
	border-radius: 12px;
	margin-top: 5px;
	margin-right: 5px;
}

.product-grid-item .product-grid-item-image .labels .label:last-child {
	margin-right: 0;
}

.product-grid-item .product-grid-item-image .labels .label.black-friday,
.product-grid-item .product-grid-item-image .labels .label.discount-percentage {
	background: #E74C3C;
}

.product-grid-item .product-grid-item-image .labels .label.black-friday {
	margin-left: -5px;
}

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

	.product-grid-item .product-grid-item-image .labels .label.black-friday {
		padding: 4px 10px 3px 7px;
	}
}

/* PRODUCT GRID ITEM > PRODUCT LIST ITEM PANEL */
.product-grid-item .product-list-item-panel {
	display: none;
}

.product-grid-item .product-list-item-panel .product-info-wrapper {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.product-grid-item .product-list-item-panel .product-info-wrapper .product-info {
	flex: 0 1 585px;
	margin-right: 20px;
}

.product-grid-item .product-list-item-panel .product-info-wrapper .product-info .labels .label {
	display: inline-block;
	vertical-align: middle;
	padding: 4px 10px 3px;
	background: #FFD940;
	border-radius: 12px;
	margin-right: 5px;
	margin-bottom: 20px;
}

.product-grid-item .product-list-item-panel .product-info-wrapper .product-info .labels .label:last-child {
	margin-right: 0;
}

.product-grid-item .product-list-item-panel .product-info-wrapper .product-info .labels .label.black-friday,
.product-grid-item .product-list-item-panel .product-info-wrapper .product-info .labels .label.discount-percentage {
	background: #E74C3C;
}

.product-grid-item .product-list-item-panel .product-info-wrapper .product-info .name {
	display: block;
	margin-bottom: 15px;
}

.product-grid-item .product-list-item-panel .product-info-wrapper .product-info .product-rating-wrapper {
	margin-bottom: 15px;
}

.product-grid-item .product-list-item-panel .product-info-wrapper .product-info .product-rating-wrapper .stars {
	display: inline-block;
	vertical-align: middle;
	margin-right: 5px;
}

.product-grid-item .product-list-item-panel .product-info-wrapper .product-info .product-rating-wrapper .text {
	display: inline-block;
	vertical-align: middle;
}

.product-grid-item .product-list-item-panel .product-info-wrapper .product-info .configurable-options-wrapper .option-value-wrapper {
	position: relative;
	padding: 14px 0 11px 26px;
	border-top: 1px solid #E5E5E4;
	cursor: pointer;
}

.product-grid-item .product-list-item-panel .product-info-wrapper .product-info .configurable-options-wrapper .option-value-wrapper:last-child {
	border-bottom: 1px solid #E5E5E4;
}

.product-grid-item .product-list-item-panel .product-info-wrapper .product-info .configurable-options-wrapper .option-value-wrapper:before {
	content: '';
	position: absolute;
	top: 15px;
	left: 0;
	display: block;
	width: 16px;
	height: 16px;
	background: #ffffff;
	border: 2px solid #231F20;
	border-radius: 50%;
}

.product-grid-item .product-list-item-panel .product-info-wrapper .product-info .configurable-options-wrapper .option-value-wrapper.selected:before {
	border-color: #00ADEE;
	box-shadow: 0 0 0 2px rgba(0, 173, 238, 0.25);
}

.product-grid-item .product-list-item-panel .product-info-wrapper .product-info .configurable-options-wrapper .option-value-wrapper.selected:after {
	content: '';
	position: absolute;
	top: 19px;
	left: 4px;
	width: 8px;
	height: 8px;
	background: #00ADEE;
	border-radius: 50%;
}

.product-grid-item .product-list-item-panel .product-info-wrapper .product-info .configurable-options-wrapper .option-value-wrapper .option-value-label,
.product-grid-item .product-list-item-panel .product-info-wrapper .product-info .configurable-options-wrapper .option-value-wrapper .option-price-per-weight,
.product-grid-item .product-list-item-panel .product-info-wrapper .product-info .configurable-options-wrapper .option-value-wrapper .notify-me-when-available,
.product-grid-item .product-list-item-panel .product-info-wrapper .product-info .configurable-options-wrapper .option-value-wrapper .free-delivery,
.product-grid-item .product-list-item-panel .product-info-wrapper .product-info .configurable-options-wrapper .option-value-wrapper .option-value-prices-wrapper {
	display: inline-block;
	vertical-align: middle;
}

.product-grid-item .product-list-item-panel .product-info-wrapper .product-info .configurable-options-wrapper .option-value-wrapper .option-value-label {
	margin-right: 5px;
}

.product-grid-item .product-list-item-panel .product-info-wrapper .product-info .configurable-options-wrapper .option-value-wrapper .option-price-per-weight {
	color: #838381;
}

.product-grid-item .product-list-item-panel .product-info-wrapper .product-info .configurable-options-wrapper .option-value-wrapper .notify-me-when-available {
	position: relative;
	top: -1px;
	margin-left: 10px;
}

.product-grid-item .product-list-item-panel .product-info-wrapper .product-info .configurable-options-wrapper .option-value-wrapper .free-delivery {
	position: relative;
	top: -1px;
	margin-left: 10px;
}

.product-grid-item .product-list-item-panel .product-info-wrapper .product-info .configurable-options-wrapper .option-value-wrapper .notify-me-when-available:before,
.product-grid-item .product-list-item-panel .product-info-wrapper .product-info .configurable-options-wrapper .option-value-wrapper .free-delivery:before {
	content: '';
	display: inline-block;
	vertical-align: middle;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	margin-right: 5px;
}

.product-grid-item .product-list-item-panel .product-info-wrapper .product-info .configurable-options-wrapper .option-value-wrapper .notify-me-when-available:before {
	background: #E74C3C url('../images/icons/icon-envelope-white-small.svg') no-repeat center;
}

.product-grid-item .product-list-item-panel .product-info-wrapper .product-info .configurable-options-wrapper .option-value-wrapper .free-delivery:before {
	background: #239B56 url('../images/icons/icon-truck-white-small.svg') no-repeat center;
}

.product-grid-item .product-list-item-panel .product-info-wrapper .product-info .configurable-options-wrapper .option-value-wrapper .notify-me-when-available span,
.product-grid-item .product-list-item-panel .product-info-wrapper .product-info .configurable-options-wrapper .option-value-wrapper .free-delivery span {
	display: inline;
	vertical-align: middle;
}

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

	.product-grid-item .product-list-item-panel .product-info-wrapper .product-info .configurable-options-wrapper .option-value-wrapper .notify-me-when-available span,
	.product-grid-item .product-list-item-panel .product-info-wrapper .product-info .configurable-options-wrapper .option-value-wrapper .free-delivery span {
		display: none;
	}
}

.product-grid-item .product-list-item-panel .product-info-wrapper .product-info .configurable-options-wrapper .option-value-wrapper .option-value-prices-wrapper {
	position: absolute;
	top: 50%;
	right: 0;
	display: flex;
	align-items: center;
	flex-direction: row-reverse;
	padding: 3px 0 0 20px;
	background: #ffffff;
	transform: translateY(-50%);
}

.product-grid-item .product-list-item-panel .product-info-wrapper .product-info .configurable-options-wrapper .option-value-wrapper .option-value-prices-wrapper .option-value-old-price {
	display: inline-block;
	vertical-align: middle;
	margin-left: 5px;
}

.product-grid-item .product-list-item-panel .product-info-wrapper .product-info .configurable-options-wrapper .option-value-wrapper .option-value-prices-wrapper .option-value-price {
	display: inline-block;
	vertical-align: middle;
}

.product-grid-item .product-list-item-panel .product-info-wrapper .cart-panel {
	flex: 0 0 235px;
}

.product-grid-item .product-list-item-panel .product-info-wrapper .cart-panel .prices-wrapper {
	margin-bottom: 15px;
	text-align: center;
}

.product-grid-item .product-list-item-panel .product-info-wrapper .cart-panel .prices-wrapper .old-price,
.product-grid-item .product-list-item-panel .product-info-wrapper .cart-panel .prices-wrapper .price {
	display: inline-block;
	vertical-align: middle;
}

.product-grid-item .product-list-item-panel .product-info-wrapper .cart-panel .prices-wrapper .old-price {
	margin-left: 5px;
}

.product-grid-item .product-list-item-panel .product-info-wrapper .cart-panel .prices-wrapper .price-per-weight:not(:empty) {
	margin-top: 5px;
}

.product-grid-item .product-list-item-panel .product-info-wrapper .cart-panel .notify-wrapper {
	padding: 10px;
	background: rgba(231, 76, 60, 0.1);
	border-radius: 10px;
}

.product-grid-item .product-list-item-panel .product-info-wrapper .cart-panel .notify-wrapper .notify-message {
	margin-bottom: 10px;
	text-align: center;
}

.product-grid-item .product-list-item-panel .product-info-wrapper .cart-panel .notify-wrapper .notify-button {
	padding: 14px 10px 13px;
	background: #E74C3C;
	border-radius: 20px;
	text-align: center;
	cursor: pointer;
	transition: background-color 0.2s ease-in-out;
}

.product-grid-item .product-list-item-panel .product-info-wrapper .cart-panel .notify-wrapper .notify-button:hover {
	background: #c94538;
}

.product-grid-item .product-list-item-panel .product-info-wrapper .cart-panel .add-to-cart-wrapper > .discount-label {
	position: relative;
	min-height: 28px;
	margin-bottom: 15px;
	padding: 6px 12px 6px 27px;
	background: #E74C3C;
	border-radius: 14px;
	cursor: pointer;
}

.product-grid-item.has-discount-label.is-autoship .product-list-item-panel .product-info-wrapper .cart-panel .add-to-cart-wrapper > .discount-label {
	margin-bottom: 10px;
}

.product-grid-item .product-list-item-panel .product-info-wrapper .cart-panel .add-to-cart-wrapper > .discount-label:before {
	content: '';
	position: absolute;
	top: 7px;
	left: 7px;
	display: block;
	width: 14px;
	height: 14px;
	background: url('../images/icons/icon-tag-white.svg') center no-repeat;
	background-size: 14px;
}

.product-grid-item .product-list-item-panel .product-info-wrapper .cart-panel .add-to-cart-wrapper > .autoship-label {
	position: relative;
	min-height: 24px;
	margin-top: -5px;
	margin-bottom: 15px;
	padding: 8px 10px 8px 39px;
	background: rgba(255, 217, 64, 0.3);
	border-radius: 12px;
	cursor: pointer;
}

.product-grid-item .product-list-item-panel .product-info-wrapper .cart-panel .add-to-cart-wrapper > .autoship-label:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 6px;
	display: block;
	width: 24px;
	height: 24px;
	background: #231F20 url('../images/icons/icon-autoship-accent1-small.svg') center no-repeat;
	background-size: 18px;
	border-radius: 50%;
	transform: translateY(-50%);
}

.product-grid-item .product-list-item-panel .product-info-wrapper .cart-panel .add-to-cart-wrapper .add-to-cart-panel {
	padding: 10px;
	background: rgba(35, 155, 86, 0.1);
	border-radius: 10px;
}

.product-grid-item .product-list-item-panel .product-info-wrapper .cart-panel .add-to-cart-wrapper .add-to-cart-panel .quantity-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 10px;
}

.product-grid-item .product-list-item-panel .product-info-wrapper .cart-panel .add-to-cart-wrapper .add-to-cart-panel .quantity-wrapper .subtraction-button,
.product-grid-item .product-list-item-panel .product-info-wrapper .cart-panel .add-to-cart-wrapper .add-to-cart-panel .quantity-wrapper .addition-button {
	display: block;
	width: 40px;
	height: 40px;
	border-radius: 20px;
	cursor: pointer;
}

.product-grid-item .product-list-item-panel .product-info-wrapper .cart-panel .add-to-cart-wrapper .add-to-cart-panel .quantity-wrapper .subtraction-button {
	background: #ffffff url('../images/icons/icon-minus-success.svg') no-repeat center;
}

.product-grid-item .product-list-item-panel .product-info-wrapper .cart-panel .add-to-cart-wrapper .add-to-cart-panel .quantity-wrapper .addition-button {
	background: #ffffff url('../images/icons/icon-plus-success.svg') no-repeat center;
}

.product-grid-item .product-list-item-panel .product-info-wrapper .cart-panel .add-to-cart-wrapper .add-to-cart-panel .add-to-cart-button {
	padding: 12px 10px;
	background: #239B56;
	border-radius: 20px;
	text-align: center;
	cursor: pointer;
	transition: background-color 0.2s ease-in-out;
}

.product-grid-item .product-list-item-panel .product-info-wrapper .cart-panel .add-to-cart-wrapper .add-to-cart-panel .add-to-cart-button:hover {
	background: #4a834a;
}

.product-grid-item .product-list-item-panel .product-info-wrapper .cart-panel .add-to-cart-wrapper .add-to-cart-panel .add-to-cart-button:before {
	content: '';
	display: inline-block;
	vertical-align: middle;
	width: 16px;
	height: 16px;
	margin-right: 7px;
	background: url('../images/icons/icon-cart-white-small.svg') no-repeat center;
}

.product-grid-item .product-list-item-panel .product-info-wrapper .cart-panel .add-to-cart-wrapper .add-to-cart-panel .add-to-cart-button span {
	display: inline-block;
	vertical-align: middle;
}

/* PRODUCT GRID ITEM > PRODUCT GRID ITEM PANEL */
.product-grid-item .product-grid-item-panel {
	padding: 0 5px;
}

.product-grid-item .product-grid-item-panel .labels {
	display: none;
}

.product-grid-item .product-grid-item-panel .name {
	display: block;
	margin-bottom: 8px;
}

.product-grid-item .product-grid-item-panel .product-rating-wrapper {
	margin-bottom: 10px;
}

.product-grid-item .product-grid-item-panel .product-rating-wrapper .stars {
	display: inline-block;
	vertical-align: middle;
	margin-right: 5px;
}

.product-grid-item .product-grid-item-panel .product-rating-wrapper .text {
	display: inline-block;
	vertical-align: middle;
}

.product-grid-item .product-grid-item-panel .configurations-wrapper {
	margin-top: -5px;
	margin-left: -5px;
}

.product-grid-item .product-grid-item-panel .configurations-wrapper .configuration-option {
	display: inline-block;
	vertical-align: middle;
	margin-top: 5px;
	margin-left: 5px;
	padding: 3px 7px 2px;
	border: 1px solid #E0E0E0;
	border-radius: 3px;
}

.product-grid-item .product-grid-item-panel > .autoship-label,
.product-grid-item .product-grid-item-panel .free-delivery {
	display: none;
}

.product-grid-item .product-grid-item-panel .prices-wrapper {
	position: absolute;
	bottom: 15px;
	left: 15px;
	width: calc(100% - 30px);
}

.product-grid-item .product-grid-item-panel .prices-wrapper .old-price {
	display: inline-block;
	margin-right: 10px;
}

.product-grid-item .product-grid-item-panel .prices-wrapper .price-per-weight {
	margin-top: 3px;
}

.product-grid-item .product-grid-item-panel .prices-wrapper > .discount-label {
	position: relative;
	min-height: 28px;
	margin-top: 10px;
	padding: 6px 12px 6px 27px;
	background: #E74C3C;
	border-radius: 14px;
	cursor: pointer;
}

.product-grid-item.has-discount-label.is-autoship .product-grid-item-panel .prices-wrapper > .discount-label {
	margin-bottom: -10px;
}

.product-grid-item .product-grid-item-panel .prices-wrapper > .discount-label:before {
	content: '';
	position: absolute;
	top: 7px;
	left: 7px;
	display: block;
	width: 14px;
	height: 14px;
	background: url('../images/icons/icon-tag-white.svg') center no-repeat;
	background-size: 14px;
}

.product-grid-item .product-grid-item-panel .prices-wrapper > .autoship-label {
	position: relative;
	display: block;
	margin-top: 14px;
	padding: 3px 8px 3px 27px;
	background: rgba(255, 217, 64, 0.3);
	border-radius: 12px;
	cursor: pointer;
}

.product-grid-item .product-grid-item-panel .prices-wrapper > .autoship-label:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 2px;
	display: block;
	width: 20px;
	height: 20px;
	background: #231F20 url('../images/icons/icon-autoship-accent1-small.svg') center no-repeat;
	background-size: 16px;
	border-radius: 10px;
	transform: translateY(-50%);
}

.list .product-grid-item {
	margin-bottom: 15px;
	padding: 20px 20px 30px;
}

.list .product-grid-item:last-child {
	margin-bottom: 0;
}

.list .product-grid-item .product-grid-item-panel {
	display: none;
}

.list .product-grid-item .product-grid-item-image {
	display: inline-block;
	vertical-align: top;
	width: 170px;
	margin-right: 20px;
	margin-bottom: 0;
}

.list .product-grid-item .product-grid-item-image img {
	width: 100%;
}

.list .product-grid-item .product-grid-item-image .labels {
	display: none;
}

.list .product-grid-item .product-list-item-panel {
	display: inline-block;
	vertical-align: top;
	max-width: calc(100% - 190px);
	width: 100%;
}

.list .product-grid-item .product-grid-item-panel > .autoship-label {
	display: none;
}

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

	.list .product-grid-item .product-list-item-panel {
		display: none;
	}

	.list .product-grid-item {
		padding: 20px 15px !important;
	}

	.list .product-grid-item .product-grid-item-image {
		width: 85px;
		height: auto;
		margin-right: 15px;
	}

	.list .product-grid-item .product-grid-item-image img {
		width: 100% !important;
	}

	.list .product-grid-item .product-grid-item-panel {
		display: inline-block;
		vertical-align: top;
		max-width: calc(100% - 100px);
		width: 100%;
		padding: 0;
	}

	.list .product-grid-item .product-grid-item-panel .labels {
		display: block;
	}

	.list .product-grid-item .product-grid-item-panel .labels .label {
		display: inline-block;
		vertical-align: middle;
		padding: 4px 10px 3px;
		background: #FFD940;
		border-radius: 12px;
		margin-right: 5px;
		margin-bottom: 10px;
	}

	.list .product-grid-item .product-grid-item-panel .labels .label:last-child {
		margin-right: 0;
	}

	.list .product-grid-item .product-grid-item-panel .labels .label.black-friday,
	.list .product-grid-item .product-grid-item-panel .labels .label.discount-percentage {
		background: #E74C3C;
	}

	.list .product-grid-item .product-grid-item-panel .name {
		margin-bottom: 5px;
	}

	.list .product-grid-item .product-grid-item-panel > .discount-label {
		position: relative;
		min-height: 28px;
		margin-top: 15px;
		margin-bottom: -8px;
		padding: 6px 12px 6px 27px;
		background: #E74C3C;
		border-radius: 14px;
		cursor: pointer;
	}

	.list .product-grid-item .product-grid-item-panel > .discount-label:before {
		content: '';
		position: absolute;
		top: 7px;
		left: 7px;
		display: block;
		width: 14px;
		height: 14px;
		background: url('../images/icons/icon-tag-white.svg') center no-repeat;
		background-size: 14px;
	}

	.list .product-grid-item .product-grid-item-panel > .autoship-label {
		position: relative;
		display: inline-block;
		min-height: 20px;
		margin-top: 15px;
		margin-bottom: -8px;
		padding: 3px 8px 3px 27px;
		background: rgba(255, 217, 64, 0.3);
		border-radius: 12px;
		cursor: pointer;
	}

	.list .product-grid-item .product-grid-item-panel > .autoship-label:before {
		content: '';
		position: absolute;
		top: 50%;
		left: 2px;
		display: block;
		width: 20px;
		height: 20px;
		background: #231F20 url('../images/icons/icon-autoship-accent1-small.svg') center no-repeat;
		background-size: 16px;
		border-radius: 50%;
		transform: translateY(-50%);
	}

	.list .product-grid-item .product-grid-item-panel .free-delivery {
		display: block;
		margin-top: 15px;
	}

	.list .product-grid-item .product-grid-item-panel .free-delivery:before {
		content: '';
		display: inline-block;
		vertical-align: middle;
		width: 20px;
		height: 20px;
		border-radius: 50%;
		margin-right: 5px;
		background: #239B56 url('../images/icons/icon-truck-white-small.svg') no-repeat center;
	}

	.list .product-grid-item .product-grid-item-panel .free-delivery span {
		display: inline;
		vertical-align: middle;
	}

	.list .product-grid-item .product-grid-item-panel .prices-wrapper {
		position: initial;
		margin-top: 15px;
		margin-right: 0;
	}

	.list .product-grid-item .product-grid-item-panel .prices-wrapper .price-per-weight {
		margin-top: 5px;
	}

	.list .product-grid-item .product-grid-item-panel .prices-wrapper > .discount-label,
	.list .product-grid-item .product-grid-item-panel .prices-wrapper > .autoship-label {
		display: none;
	}
}

/* PRODUCT AVAILABILITY NOTIFICATION REQUEST */
.product-availability-notification-request {
	display: none;
	max-width: 330px;
	width: 100%;
	padding: 20px 20px 25px !important;
	border-radius: 10px;
}

.product-availability-notification-request .field-label {
	display: block;
	margin-bottom: 20px;
}

.product-availability-notification-request .field-label span {
	display: block;
	margin-bottom: 10px;
	font-size: 14px;
	color: #231F20;
	letter-spacing: 0;
	line-height: 14px;
	font-family: 'Rubik', sans-serif;
	font-weight: 400;
}

.product-availability-notification-request .field-label input {
	display: block;
	width: 100%;
	padding: 15px;
}

.product-availability-notification-request .send-product-availability-notification-request-button {
	display: block;
	width: 100%;
	margin-top: 20px;
	padding: 17px 10px 16px;
	background: #00ADEE;
	border-radius: 24px;
	text-align: center;
	cursor: pointer;
	transition: background-color 0.2s ease-in-out;
}

.product-availability-notification-request .send-product-availability-notification-request-button:hover {
	background: #3d91c4;
}

/* PAGING WRAPPER */
.paging-wrapper {
	width: 272px;
	margin: 40px auto 0;
}

.paging-wrapper .paging .arrows {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
}

.paging-wrapper .paging .arrows .prev,
.paging-wrapper .paging .arrows .next {
	flex: 0 1 132px;
	padding: 12px 10px 10px;
	background: #ffffff;
	border: 1px solid #E5E5E4;
	border-radius: 24px;
	box-shadow: 0 5px 15px -7px rgba(0, 0, 0, 0.15);
	transition: box-shadow 0.2s ease-in-out;
}

.paging-wrapper .paging .arrows .prev:not(.disabled):hover,
.paging-wrapper .paging .arrows .next:not(.disabled):hover {
	box-shadow: 0 10px 20px -7px rgba(0, 0, 0, 0.2);
}

.paging-wrapper .paging .arrows .next {
	text-align: right;
}

.paging-wrapper .paging .arrows .prev span,
.paging-wrapper .paging .arrows .next span {
	display: inline-block;
	vertical-align: middle;
	text-transform: uppercase;
}

.paging-wrapper .paging .arrows .prev:before,
.paging-wrapper .paging .arrows .next:after {
	content: '';
	display: inline-block;
	vertical-align: middle;
	width: 24px;
	height: 24px;
}

.paging-wrapper .paging .arrows .prev:before {
	margin-right: 7px;
	background: url('../images/icons/icon-chevron-left-dark.svg') no-repeat center;
}

.paging-wrapper .paging .arrows .next:after {
	margin-left: 7px;
	background: url('../images/icons/icon-chevron-right-dark.svg') no-repeat center;
}

.paging-wrapper .paging .arrows .prev.disabled span,
.paging-wrapper .paging .arrows .prev.disabled:before,
.paging-wrapper .paging .arrows .next.disabled span,
.paging-wrapper .paging .arrows .next.disabled:after {
	opacity: 0.5;
}

.paging-wrapper .paging > ul {
	text-align: center;
}

.paging-wrapper .paging > ul > li {
	display: inline-block;
	vertical-align: middle;
	width: 48px;
	height: 48px;
	margin-right: 8px;
	border-radius: 24px;
	text-align: center;
}

.paging-wrapper .paging .current {
	background-color: #FFD940;
}

.paging-wrapper .paging > ul > li:last-of-type {
	margin-right: 0;
}

.paging-wrapper .paging > ul > li > a {
	display: block;
	width: 100%;
	line-height: 49px;
}

.paging-wrapper .paging-info-text {
	margin-top: 20px;
	text-align: center;
}

/* BREADCRUMBS */
.breadcrumbs-wrapper .breadcrumbs .breadcrumb {
	display: inline-block;
	vertical-align: middle;
}

.breadcrumbs-wrapper .breadcrumbs .breadcrumb:not(:last-child):after {
	content: '';
	position: relative;
	top: -2px;
	display: inline-block;
	vertical-align: middle;
	width: 12px;
	height: 12px;
	margin: 0 5px;
	background: url('../images/icons/icon-chevron-right-pale-xsmall.svg') no-repeat center;
}

.breadcrumbs-wrapper .breadcrumbs .breadcrumb:last-child {
	position: relative;
	top: -1px;
}

.breadcrumbs-wrapper .breadcrumbs .breadcrumb-link {
	display: inline-block;
	vertical-align: middle;
	font-size: 12px;
	color: #9E9E98;
	letter-spacing: 0;
	line-height: 17px;
	font-family: 'Rubik', sans-serif;
	font-weight: 400;
}

.breadcrumbs-wrapper .breadcrumbs .breadcrumb-link.home:before {
	content: '';
	position: relative;
	top: -2px;
	display: inline-block;
	vertical-align: middle;
	width: 12px;
	height: 12px;
	background: url('../images/icons/icon-home-pale-xsmall.svg') no-repeat center;
}
/* ============================================================================ */
/* PROMO COUNTDOWN */
.countdown-timer-wrapper {
	width: 240px;
	padding: 10px 0;
	background: rgba(0, 0, 0, 0.80);
	text-align: center;
}
.product-grid-item .countdown-timer-wrapper {
	position: absolute;
	bottom: 44px;
	left: 50%;
	margin-left: -120px;
	opacity: 1;
	-webkit-transition: opacity 0.32s;
	-moz-transition: opacity 0.32s;
	-o-transition: opacity 0.32s;
	transition: opacity 0.32s;
}
.product-grid-item.hover .countdown-timer-wrapper {
	opacity: 0;
}
.sp-cart-actions-wrapper .countdown-timer-wrapper {
	position: absolute;
	top: 0;
	left: 50%;
	margin-left: -120px;
}
.countdown-timer-title {
	margin-bottom: 6px;
	color: #f3008f;
	font-size: 12px;
	text-transform: uppercase;
}
.countdown-timer-number {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	font-weight: 700;
}
.countdown-timer-number .inner,
.countdown-timer-number:not(:last-child):after {
	display: inline-block;
	vertical-align: top;
}
.countdown-timer-number .inner {
	width: 35px;
}
.countdown-timer-number:not(:last-child):after {
	content: ":";
	color: #fff;
}
.countdown-counter {
	color: #fff;
	font-size: 15px;
}
.countdown-label {
	color: #d1d3d4;
	font-size: 10px;
	text-transform: uppercase;
}
/* PRODUCT CART ACTIONS */
#orderedProductForm {
	margin-top: 20px;
}
.customized-configurable-option {
	position: relative;
	z-index: 2;
	background: #fff;
	cursor: default;
}
.sp-size-guide-link {
	display: block;

	margin: 11px auto 12px;
	color: #58595b;
	text-decoration: underline;
	letter-spacing: 0.5px;
}
.sp-size-guide {
	min-width: 500px;
}
.sp-size-guide .content {
	text-align: center;
}
.sp-size-guide .content table {
	display: inline-block;
	border: 1px solid #e6e7e8;
	border-spacing: 0;
}
.sp-size-guide .content td,
.sp-size-guide .content th {
	padding: 10px 20px;
	border: 1px solid #e6e7e8;
	border-bottom: 0;
	border-right: 0;
	color: #414042;
}
.sp-size-guide .content tr:first-child th {
	border-top: 0 none;
}
.sp-size-guide .content th:first-child,
.sp-size-guide .content th:first-child {
	border-left: 0 none;
}
.sp-size-guide .content em {
	color: #58595b;
}
.configurable-option {
	position: relative;
	margin-bottom: 20px;
}
.configurable-option:last-child {
	margin-bottom: 0;
}
.configurable-option-label {
	margin-bottom: 5px;
	letter-spacing: 0.5px;
}
.configurable-option-values {
	font-size: 0;
	cursor: default;
}
@media only screen and (min-width: 1285px) {
	.single-product .configurable-option-values .value:nth-child(n+6) {
		margin-top: 10px;
	}
	.single-product .configurable-option-values .value:nth-child(5n) {
		margin-right: 0;
	}
}
@media only screen and (min-width: 1042px) and (max-width: 1284px) {
	.single-product .configurable-option-values .value:nth-child(n+5) {
		margin-top: 10px;
	}
	.single-product .configurable-option-values .value:nth-child(4n) {
		margin-right: 0;
	}
}
@media only screen and (max-width: 1041px) {
	.single-product .configurable-option-values .value:nth-child(n+4) {
		margin-top: 10px;
	}
	.newsletter-banner-wrapper {
		background-size: auto 230px;
		background-position: -50px 15px;
		padding: 45px 30px 30px 50px;
	}
	.newsletter-banner-wrapper .newsletter-banner-form-wrapper .newsletter-banner-field-wrapper input {
		max-width: calc(100% - 125px);
		padding: 0 10px 0 25px;
	}
	.newsletter-banner-wrapper .newsletter-banner-form-wrapper .newsletter-banner-field-wrapper button {
		width: 125px;
	}
}
.hp-products-title,
.lookbook-models-title {
	width: 90%;
	margin: 0 auto;
	padding-top: 25px;
	border-top: 1px solid #e6e7e8;
	color: #414042;
	font-size: 20px;
	text-align: center;
	text-transform: uppercase;
}
.hp-products-title,
.lookbook-models-title {
	font-weight: 700;
	font-size: 24px;
}
.hp-products-wrapper {
	margin-bottom: 30px;
}
.hp-products,
.latest-lookbook-models {
	margin: 25px 20px 0;
	background: #fff;
	font-size: 0;
}
@media only screen and (max-width: 879px) {
	.hp-products{
		overflow: hidden;
		white-space: nowrap;
	}
	.hp-products .product-grid-item {
		white-space: initial;
	}
}
/* QUICK VIEW */
.quick-view {
	max-width: 815px;
}
.quick-view .sp-block-wrapper {
	float: none;
}
.quick-view .sp-gallery-wrapper {
	width: 49.03%;
}
.quick-view .sp-cart-actions-wrapper {
	width: 44%;
	margin-left: 6.97%;
}
.quick-view .configurable-option-values .value:nth-child(n+6) {
	margin-top: 10px;
}
.quick-view .configurable-option-values .value:nth-child(5n) {
	margin-right: 0;
}
.quick-view .sp-zoom-icon {
	display: none;
}
.quickview-prev-img,
.quickview-next-img {
	position: absolute;
	top: 50%;
	width: 60px;
}
.quickview-prev-img {
	left: 0;
}
.quickview-next-img {
	right: 0;
}
/* CENTERED CONTENT */
.centered-content {
	margin: 0 auto;
	padding-top: 30px;
	text-align: center;
}
.centered-content h1 {
	padding: 0 4%;
	text-transform: uppercase;
	color: #E74C3C;
}
.centered-content a:not(.btn):hover {
	color: #414042;
}
.centered-content .back-btn {
	margin-top: 20px;
	display: block;
}
.centered-content-box {
	display: inline-block;
	width: 80%;
	max-width: 980px;
	margin-top: 30px;
	padding: 40px;
	background: #fff;
	text-align: left;
}
.centered-content-box.centered {
	text-align: center;
}
.centered-content-box.no-background {
	margin-top: 0;
	background: none;
	padding-top: 40px;
	padding-bottom: 40px;
}
.centered-content-box-title .optional {
	color: #d2d4d3;
}
.ccbox-left-column,
.ccbox-right-column {
	display: inline-block;
	vertical-align: top;
	font-size: 13px;
	padding: 10px 0;
}
.ccbox-left-column {
	width: 50%;
	padding-right: 40px;
	border-right: 1px solid #d2d4d3;
}
.ccbox-right-column {
	width: 50%;
	padding-left: 40px;
}
.ccbox-form .ccbox-form-label,
.ccbox-form .ccbox-form-field {
	padding-bottom: 10px;
}
.ccbox-form .ccbox-form-label {
	padding-right: 10px;
	text-align: right;
}
.ccbox-form-field input,
.ccbox-form-field textarea {
	width: 100%;
	max-width: 244px;
}
.ccbox-form-field textarea {
	max-width: 244px;
	min-width: 244px;
	min-height: 50px;
}
.ccbox-form .field-error .help-inline {
	position: relative;
	top: -5px;
	margin-bottom: 10px;
}
.ccbox-form td.help-inline {
	margin-bottom: 10px;
}
/* CENTERED CONTENT > INNER BOX */
.centered-content-inner-box-content {
	margin-bottom: 40px;
	padding-bottom: 30px;
	border-bottom: 1px solid #e6e7e8;
}
.centered-content-inner-box-content:last-child {
	margin-bottom: 20px;
}
.centered-content-inner-box-content:not(.bordered):last-child {
	border-bottom: 0 none;
}
.centered-content-inner-box-content .field-label {
	display: block;
	margin-bottom: 10px;
}
.centered-content-inner-box-content fieldset {
	height: 30px;
	padding-top: 13px;
	margin-top: 10px;
}
.centered-content-inner-box-content fieldset legend {
	float: left;
}
.centered-content-inner-box-content .field-label span:not(.required-field-star),
.centered-content-inner-box-content fieldset legend {
	display: inline-block;
	vertical-align: top;
	width: 30%;
	padding-top: 8px;
}
.centered-content-inner-box-content .field-label span:not(.required-field-star):after,
.centered-content-inner-box-content fieldset legend:after {
	content: ":";
	margin-left: 1px;
	display: inline-block;
}
.centered-content-inner-box-content .field-label .required-field-star {
	display: none;
}
.centered-content-inner-box-content .field-label input,
.centered-content-inner-box-content .field-label select,
.centered-content-inner-box-content .field-label textarea {
	width: 50%;
}
.centered-content-inner-box-content .field-label textarea {
	max-width: 100%;
	min-height: 120px;
}
.centered-content-inner-box-content .field-label .phone {
	width: 103px;
}
.centered-content-inner-box-content .field-label .post-code {
	width: 64px;
}
.centered-content-inner-box-content:not(.shipping-type) .help-inline {
	position: relative;
	top: -5px;
	margin-bottom: 10px;
	padding-left: 30%;
}

/* ADD TO CART FLASH MESSAGE */

.overlay.product-proceed-to-checkout {
	z-index: 9999999999;
	background: rgba(35, 31, 32, 0.75);
	opacity: 1;
}

.fm-product {
	position: fixed;
	top: 50%;
	left: 50%;
	z-index: 9999999999;
	display: block;
	width: 330px;
	border-radius: 10px;
	overflow: hidden;
	transform: translate(-50%, -50%);
}

.fm-product .fm-product-header {
	position: relative;
	margin-bottom: -1px;
	padding: 20px 50px 20px 50px;
	background: #ffffff;
}

.fm-product .fm-product-header:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 15px;
	display: block;
	width: 24px;
	height: 24px;
	background: #239B56 url('../images/icons/icon-check-white-small.svg') no-repeat center;
	border-radius: 12px;
	transform: translateY(-50%);
}

.fm-product .fm-product-header .close-button {
	position: absolute;
	top: 50%;
	right: 17px;
	display: block;
	width: 24px;
	height: 24px;
	background: url('../images/icons/icon-times-dark.svg') no-repeat center;
	transform: translateY(-50%);
	cursor: pointer;
}

.fm-product .fm-product-content {
	padding: 20px 15px 16px;
	background: #F7F7F7;
}

.fm-product .fm-product-content .fm-image {
	display: inline-block;
	vertical-align: top;
	width: 60px;
	margin-right: 10px;
	border-radius: 10px;
	overflow: hidden;
}

.fm-product .fm-product-content .fm-image img {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
}

.fm-product .fm-product-content .fm-info {
	display: inline-block;
	vertical-align: top;
	max-width: calc(100% - 70px);
	width: 100%;
}

.fm-product .fm-product-content .fm-info .fm-info-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 15px;
	padding-top: 10px;
	border-top: 1px solid #E5E5E4;
}

.fm-product .fm-product-content .fm-info .fm-info-bottom .prices-wrapper .old-price {
	display: inline-block;
	margin-right: 5px;
}

.fm-product .fm-product-footer {
	margin-top: -1px;
	padding: 25px 30px 30px 30px;
	background: #ffffff;
}

.fm-product .fm-product-footer .button-medium-success {
	display: block;
	padding: 18px 10px 17px;
	background: #239B56;
	border-radius: 24px;
	text-align: center;
	cursor: pointer;
	transition: background-color 0.2s ease-in-out;
}

.fm-product .fm-product-footer .button-medium-success:hover {
	background: #4a834a;
}

.fm-product .fm-product-footer .button-medium-outline {
	display: block;
	margin-top: 10px;
	padding: 16px 10px 15px;
	background: #ffffff;
	border: 2px solid #E5E5E4;
	border-radius: 24px;
	text-align: center;
	cursor: pointer;
}

/* FLASH MESSAGES */
.flash-messages-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 45;
	width: 100%;
	box-shadow: 0 10px 20px -7px rgb(0 0 0 / 20%);
}

.flash-messages-wrapper .flash-message {
	position: relative;
	display: none;
	padding: 10px 35px 10px 15px;
	text-align: center;
}

.flash-messages-wrapper .flash-message.success {
	background-color: #449117;
}

.flash-messages-wrapper .flash-message.error {
	background-color: #e84c3d;
}

.flash-messages-wrapper .flash-message .close-button {
	position: absolute;
	top: 13px;
	right: 10px;
	display: block;
	width: 16px;
	height: 16px;
	background: url('../images/icons/icon-times-white-small.svg') no-repeat center;
	cursor: pointer;
}

/* 404 ERROR PAGE */
.error-404-wrapper {
	max-width: 1180px;
	margin: 40px auto 0;
	padding-left: 20px;
	padding-right: 20px;
	font-size: 0;
}

/* FOOTER */
footer {
	position: relative;
	width: 100%;
	background-color: #231f20;
}

footer .contact-line {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 88px;
	background: #FFD940;
}

footer .contact-line .contact .icon {
	display: inline-block;
	position: relative;
	vertical-align: middle;
	margin-right: 15px;
	width: 48px;
	height: 48px;
	background: #000;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
}

footer .contact-line .contact .icon:after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 32px;
	height: 32px;
	background: url('../images/icons/icon-phone-white-large.svg');
	transform: translate(-50%, -50%);
}

footer .contact-line .contact .information {
	display: inline-block;
	vertical-align: middle;
}

footer > .inner {
	display: flex;
	justify-content: space-between;
	width: 100%;
	max-width: 1330px;
	margin: 0 auto;
	padding: 40px 15px;
}

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

	footer > .inner {
		padding: 40px 20px;
	}
}

footer .inner .footer-section {
	flex: 0 1 200px;
	margin-right: 30px;
}

footer .inner .footer-section:last-child {
	margin-right: 0;
}

footer .inner .footer-section .title {
	margin-bottom: 10px;
}

footer .inner .footer-section .content ul li {
	margin-bottom: 10px;
}

footer .inner .footer-section .content ul li:last-child {
	margin-bottom: 0;
}

footer .inner .footer-section .content ul li a {
	color: #fff;
	font-family: 'Rubik', sans-serif;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 21px;
}

footer .inner .footer-section .content ul li a:hover {
	text-decoration: underline;
}

footer .inner .footer-section.brand {
	flex: 0 1 156px;
}

footer .inner .footer-section.brand .footer-logo {
	display: block;
	width: 100%;
	aspect-ratio: 13 / 4;
}

footer .inner .footer-section.brand .social-icons {
	margin-top: 40px;
}

footer .inner .footer-section.brand .social-icons .icon {
	display: inline-block;
	margin-right: 10px;
}

footer .inner .footer-section.brand .social-icons .icon.facebook {
	width: 24px;
	height: 24px;
	background: url('../images/icons/icon-facebook-white.svg');
}

footer .inner .footer-section.brand .social-icons .icon.instagram {
	width: 24px;
	height: 24px;
	background: url('../images/icons/icon-instagram-white.svg');
}

footer .inner .footer-section.brand .vet{
	display: none;
}

footer .inner .footer-section.newsletter {
	flex: 0 1 365px;
}

footer .inner .footer-section.newsletter .content .text{
	margin-bottom: 20px;
}

footer .inner .footer-section.newsletter .content .newsletter-form-wrapper {
	position: relative;
}

footer .inner .footer-section.newsletter .content .newsletter-form-wrapper input {
	height: 48px;
	padding-right: 160px;
	border: 2px solid #FFD940;
	border-radius: 24px;
	-webkit-border-radius: 24px;
	-moz-border-radius: 24px;
}

footer .inner .footer-section.newsletter .content .newsletter-form-wrapper .f-newsletter-error,
footer .inner .footer-section.newsletter .content .newsletter-form-wrapper .f-newsletter-success {
	position: absolute;
	top: 60px;
	left: 17px;
	opacity: 0;
	transition: opacity 0.2s ease-in-out;
}

footer .inner .footer-section.newsletter .content .newsletter-form-wrapper .f-newsletter-error.f-newsletter-message-show,
footer .inner .footer-section.newsletter .content .newsletter-form-wrapper .f-newsletter-success.f-newsletter-message-show {
	opacity: 1;
}

footer .inner .footer-section.newsletter .content .newsletter-form-wrapper .f-newsletter-submit {
	position: absolute;
	display: flex;
	align-items: center;
	top: 50%;
	right: 5px;
	transform: translateY(-50%);
	height: 40px;
	padding: 0 30px;
	background: #231F20;
	border-radius: 24px;
	-webkit-border-radius: 24px;
	-moz-border-radius: 24px;
}

footer .inner .footer-section.newsletter .content .vet {
	margin-top: 40px;
}

footer .inner .footer-section.newsletter .content .vet > a {
	display: block;
	width: 100%;
}

footer .inner .footer-section.newsletter .with-care-for-animals {
	margin-top: 40px;
}

footer .inner .footer-section.newsletter .with-care-for-animals:before{
	content: '';
	display: inline-block;
	position: relative;
	vertical-align: top;
	width: 48px;
	height: 48px;
	background-color: #FFD940;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	margin-right: 15px;
	background-image: url('../images/icons/icon-pet-care.svg');
	background-repeat: no-repeat;
	background-position: center;
}


footer .inner .footer-section.newsletter .with-care-for-animals .information {
	display: inline-block;
	position: relative;
	vertical-align: top;
	width: calc(100% - 65px);
}

footer .inner .footer-section.newsletter .with-care-for-animals .information span {
	display: block;
}

footer .inner .footer-section.newsletter .with-care-for-animals .information span:first-child {
	margin-bottom: 10px;
}

footer .footer-icons {
	width: 100%;
	background: #fff;
	border-bottom: 1px solid #efefef;
}

footer .footer-icons > .footer-icons-inner {
	display: flex;
	justify-content: center;
	width: 100%;
	height: 100%;
	align-items: center;
	max-width: 1330px;
	margin: 0 auto;
	padding: 40px 15px;
}

footer  .footer-icons > .footer-icons-inner .icon {
	display: inline-block;
	vert-align: middle;
	margin-right: 20px;
	flex: none;
	width: 18%;
	max-width: 100%;
}

footer  .footer-icons > .footer-icons-inner .icon img {
	width: 100%;
}

footer  .footer-icons > .footer-icons-inner .icon:nth-child(2) {
	width: 10%;
}

footer  .footer-icons > .footer-icons-inner .icon:last-child {
	margin-right: 0;
}

footer  .footer-icons > .footer-icons-inner .icon.fund-of-funds img {
	aspect-ratio: 94/43;
}

footer  .footer-icons > .footer-icons-inner .icon.еuropean-union img {
	aspect-ratio: 90/83;
}

footer  .footer-icons > .footer-icons-inner .icon.innovations img {
	aspect-ratio: 88/34;
}

footer  .footer-bottom {
	width: 100%;
	height: 60px;
	background: #fff;
}

footer .footer-bottom > .bottom-inner {
	display: flex;
	justify-content: space-between;
	width: 100%;
	height: 100%;
	align-items: center;
	max-width: 1330px;
	margin: 0 auto;
	padding: 0 15px;
}

footer  .footer-bottom .bottom-inner  .developed-by .icon-heart {
	position: relative;
	top: -2px;
	display: inline-block;
	vertical-align: middle;
	width: 12px;
	height: 11px;
	background: url('../images/icons/icon-heart-accent1-xsmall.svg') no-repeat center;
}

/* Newsletter pop-up */
.newsletter-pop-up {
	max-width: 530px !important;
	border-radius: 10px !important;
	overflow: hidden;
}

.newsletter-pop-up .newsletter-pop-up-header {
	position: relative;
	padding: 21px 64px 21px 20px;
	background: #FFFFFF;
}

.newsletter-pop-up .newsletter-pop-up-header .newsletter-pop-up-close-button {
	position: absolute;
	top: 50%;
	right: 20px;
	display: block;
	width: 24px;
	height: 24px;
	background: url('../images/icons/icon-times-dark.svg') no-repeat center;
	transform: translateY(-50%);
	cursor: pointer;
}

.newsletter-pop-up .newsletter-pop-up-content {
	padding: 30px 20px 58px;
	background: #F7F7F7;
}

.newsletter-pop-up .newsletter-pop-up-text-wrapper {
	font-size: 0;
}

.newsletter-pop-up .newsletter-pop-up-text-wrapper .newsletter-pop-up-icon {
	display: inline-block;
	vertical-align: middle;
	width: 110px;
	height: 110px;
	margin-right: 15px;
	background: url('../images/icons/icon-promo-code.svg') no-repeat center;
}

.newsletter-pop-up .newsletter-pop-up-text-wrapper .newsletter-pop-up-text {
	display: inline-block;
	vertical-align: middle;
	width: calc(100% - 125px);
}

.newsletter-pop-up .newsletter-pop-up-text-wrapper .newsletter-pop-up-text .newsletter-pop-up-subtitle {
	margin-bottom: 10px;
}

.newsletter-pop-up .newsletter-pop-up-form-wrapper {
	position: relative;
	margin-top: 46px;
	background: #FFFFFF;
	border: 2px solid #231F20;
	border-radius: 10px;
	box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 0.5);
}

.newsletter-pop-up .newsletter-pop-up-form-wrapper .newsletter-pop-up-input {
	width: 100%;
	height: 52px;
	padding: 0 50px 0 20px;
	background: transparent;
	border: 0;
	border-radius: 10px;
	font-size: 14px;
	color: #231F20;
	letter-spacing: 0;
	line-height: 14px;
	font-family:'Rubik', sans-serif;
	font-weight: 500;
	box-shadow: none !important;
	outline: none !important;
}

.newsletter-pop-up .newsletter-pop-up-form-wrapper .newsletter-pop-up-input::placeholder {
	opacity: 1;
	font-size: 14px;
	color: #231F20;
	letter-spacing: 0;
	line-height: 14px;
	font-family:'Rubik', sans-serif;
	font-weight: 500;
}

.newsletter-pop-up .newsletter-pop-up-form-wrapper .newsletter-pop-up-input:-ms-input-placeholder {
	font-size: 14px;
	color: #231F20;
	letter-spacing: 0;
	line-height: 14px;
	font-family:'Rubik', sans-serif;
	font-weight: 500;
}

.newsletter-pop-up .newsletter-pop-up-form-wrapper .newsletter-pop-up-input::-ms-input-placeholder {
	font-size: 14px;
	color: #231F20;
	letter-spacing: 0;
	line-height: 14px;
	font-family:'Rubik', sans-serif;
	font-weight: 500;
}

.newsletter-pop-up .newsletter-pop-up-form-wrapper .newsletter-pop-up-submit {
	position: absolute;
	top: 50%;
	right: 15px;
	display: block;
	width: 24px;
	height: 24px;
	background: url('../images/icons/icon-paper-plane-dark.svg') no-repeat center;
	cursor: pointer;
	transform: translateY(-50%);
}

.newsletter-pop-up .newsletter-pop-up-form-wrapper .newsletter-pop-up-success,
.newsletter-pop-up .newsletter-pop-up-form-wrapper .newsletter-pop-up-error {
	position: absolute;
	top: 60px;
	left: 15px;
	opacity: 0;
	transition: opacity 0.2s ease-in-out;
}

.newsletter-pop-up .newsletter-pop-up-form-wrapper .newsletter-pop-up-success.f-newsletter-message-show,
.newsletter-pop-up .newsletter-pop-up-form-wrapper .newsletter-pop-up-error.f-newsletter-message-show {
	opacity: 1;
}

/* Autoship pop-up */
.autoship-pop-up {
	max-width: 640px !important;
	border-radius: 10px !important;
}

.autoship-pop-up .autoship-pop-up-close-button {
	top: -34px;
	width: 24px;
	height: 24px;
	background: url('../images/icons/icon-times-white-small.svg') no-repeat center;
	background-size: 100%;
}

.autoship-pop-up .autoship-pop-up-close-button:before {
	display: none;
}

.autoship-pop-up .autoship-pop-up-image {
	border-radius: 10px 10px 0 0;
	overflow: hidden;
}

.autoship-pop-up .autoship-pop-up-image img {
	display: block;
	width: 100%;
}

.autoship-pop-up .autoship-pop-up-content {
	padding: 40px;
	background: #FFFFFF;
	border-radius: 0 0 10px 10px;
}

.autoship-pop-up .autoship-pop-up-content .title {
	margin-bottom: 25px;
}

.autoship-pop-up .autoship-pop-up-content ul li {
	position: relative;
	margin-bottom: 15px;
	padding-left: 34px;
}

.autoship-pop-up .autoship-pop-up-content ul li:last-child {
	margin-bottom: 0;
}

.autoship-pop-up .autoship-pop-up-content ul li:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 24px;
	height: 24px;
	background: url('../images/icons/icon-paw-accent1-cicle-dark.svg') no-repeat center;
}

.is-blurred {
	pointer-events: none;
	user-select: none;
	filter: blur(3px);
}

.is-submitted {
	position: relative;
	cursor: wait;
}

.is-submitted:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	z-index: 9999;
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.7);
	border-radius: 10px;
}

.is-submitted > * {
	pointer-events: none;
	user-select: none;
}