/* General */
html.mobile-menu-opened,
html.filter-opened,
html.sorting-opened {
	overflow-y: hidden;
}

.main {
	padding: 0 10px;
	overflow: hidden;
}

/* Header */
header .inner {
	height: 64px;
}

header .inner .logo img {
	width: 100%;
	height: auto;
	aspect-ratio: 13 / 4;
}

header .inner .search-box,
header .inner .header-icons {
	display: none;
}

header .inner .header-icons-mobile{
	display: block;
}

/* Navigation */
.mobile-tab.nav {
	width: 100%;
	position: fixed;
	/*bottom: 0;*/
	z-index: 11;
	webkit-transform: translate3d(0, 100%, 0);
	-moz-transform: translate3d(0, 100%, 0);
	-ms-transform: translate3d(0, 100%, 0);
	-o-transform: translate3d(0, 100%, 0);
	transform: translate3d(0, 100%, 0);
	-webkit-transition: all 0.36s ease-in-out;
	-moz-transition: all 0.36s ease-in-out;
	-o-transition: all 0.36s ease-in-out;
	transition: all 0.36s ease-in-out;
}

.mobile-menu-opened .mobile-tab.nav {
	webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.mobile-tab nav {
	height: calc(100vh - 70px);
	overflow-y: auto;
}

.mobile-tab nav .inner {
	margin-top: 65px;
}

/* Mobile bottom bar */
.mobile-bottom-bar {
	display: block;
}

.mobile-bottom-bar {
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 121;
	display: flex;
	align-items: center;
	justify-content: space-around;
	width: 100%;
	height: 56px;
	background: #ffffff;
	box-shadow: 0 -3px 5px rgba(0, 0, 0, 0.05);
}

.mobile-bottom-bar .menu-icon {
	flex: 1;
	text-align: center;
}

.mobile-bottom-bar .menu-icon[data-is-opened="1"] .element .text {
	color: #000;
}

.mobile-bottom-bar .element {
	display: inline-block;
	position: relative;
	text-align: center;
}

.mobile-bottom-bar .element .icon {
	position: relative;
	display: inline-block;
	clear: both;
	height: 24px;
	width: 24px;
	z-index: 1;
	cursor: pointer;
}

.mobile-bottom-bar .element .text {
	display: block;
	position: relative;
	clear: both;
	z-index: 1;
	transition: 0.3s all;
	-webkit-transition: 0.3s all;
}

.mobile-bottom-bar .element.home .icon {
	background: url('../images/icons/icon-home-dark.svg') no-repeat 0 0;
}

.mobile-bottom-bar .element.hm-menu-button:after{
	content: '';
	position: absolute;
	bottom: -16px;
	left: -28px;
	width: 96px;
	height: 96px;
	background: url('../images/icons/icon-paw-accent-9xlarge.svg')  no-repeat 0 0;
}
.mobile-bottom-bar .element.hm-menu-button .icon {
	background: url('../images/icons/icon-bars-dark.svg') no-repeat 0 0;
}

.mobile-bottom-bar .element.customer .icon {
	background: url('../images/icons/icon-user-dark.svg') no-repeat 0 0;
}

.mobile-bottom-bar .element.customer .icon .is-logged {
	position: absolute;
	top: -11px;
	right: -9px;
	display: inline-block;
	width: 21px;
	height: 21px;
	background: #239B56;
	border-radius: 50%;
}

.mobile-bottom-bar .element.customer .icon .is-logged:after {
	content: '';
	display: block;
	position: relative;
	top: 50%;
	left: 50%;
	width: 12px;
	height: 12px;
	background: url('../images/icons/icon-check-white-xsmall.svg');
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
}

.mobile-bottom-bar .element.favourites .icon {
	background: url('../images/icons/icon-heart-dark.svg') no-repeat 0 0;
}

.mobile-bottom-bar .element.cart .icon {
	background: url('../images/icons/icon-cart-dark.svg') no-repeat 0 0;
	position: relative;
}

.mobile-bottom-bar .element .icon .count {
	position: absolute;
	top: -11px;
	right: -14px;
	display: inline-block;
	width: 21px;
	height: 21px;
	background: #00ADEE;
	border-radius: 50%;
	color: #FFFFFF;
	font-family: 'Roboto', sans-serif;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 23px;
	text-align: center;
}

/* Navigation */
.header-links,
.navigation-menu {
	display: none;
}

/* Products grid */
.flash-sale-wrapper .flash-sale img {
	max-width: 100%;
	height: auto;
}

.flash-sale-wrapper .flash-sale .flash-sale-countdown {
	padding-right: 15px;
}

.flash-sale-wrapper .flash-sale .flash-sale-countdown .big-text {
	display: block;
	margin-top: -13px;
	font-size: 19px;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 3px;
}

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

	.flash-sale-countdown .time-block .time {
		width: 38px;
		font-size: 28px;
	}
}

/* BREADCRUMBS */
.breadcrumbs-wrapper {
	width: calc(100% + 30px) !important;
	margin-bottom: 0 !important;
	margin-left: -15px !important;
	padding-bottom: 10px !important;
	white-space: nowrap !important;
	overflow-x: auto !important;
}

.breadcrumbs-wrapper .breadcrumbs .breadcrumb:first-child {
	margin-left: 15px !important;
}

.breadcrumbs-wrapper .breadcrumbs .breadcrumb:last-child {
	margin-right: 15px !important;
}

/* Footer */
footer {
	padding-bottom: 56px;
}
footer .contact-line {
	padding: 0 15px;
	justify-content: flex-start;
}
footer .inner {
	flex-direction: column;
	width: 100%;
	padding: 30px 15px;
}

footer .inner .footer-section {
	display: block;
	flex: none !important;
	width: 100%;
	margin-right: 0;
}

footer .inner .footer-section.accordion {
	position: relative;
	padding: 15px 0;
	border-bottom: 1px solid rgba(255,255,255,0.2);
}

footer .inner .footer-section.accordion .title {
	margin-bottom: 0;
}

footer .inner .footer-section.accordion .title:after {
	content: '';
	position: absolute;
	display: block;
	top: 17px;
	right: 0;
	width: 12px;
	height: 12px;
	background: url('../images/icons/icon-plus-white-xsmall.svg');
}

footer .inner .footer-section.accordion[data-is-opened="1"] .title:after {
	background: url('../images/icons/icon-minus-white-xsmall.svg');
}

footer .inner .footer-section.accordion .content {
	overflow: hidden;
	height: 0;
}

footer .inner .footer-section.accordion .content ul {
	padding-top: 20px;
}

footer .inner .footer-section.brand {
	order: 5;
}

footer .inner .footer-section.brand .footer-logo {
	display: inline-block;
	vertical-align: middle;
	width: 130px;
}

footer .inner .footer-section.brand .social-icons {
	display: inline-block;
	vertical-align: middle;
	float: right;
	margin-top: 8px;
}

footer .inner .footer-section.brand .vet {
	display: block;
	margin-top: 30px;
	text-align: center;
}

footer .inner .footer-section.brand .vet > a {
	display: block;
	width: 100%;
	max-width: 360px;
	margin: 0 auto;
}

footer .inner .footer-section.customer {
	order: 2;
}

footer .inner .footer-section.products {
	order: 4;
	margin-bottom: 30px;
}

footer .inner .footer-section.useful {
	order: 3;
}

footer .inner .footer-section.newsletter {
	order: 1;
	margin-bottom: 20px;
}

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

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

footer  .footer-icons > .footer-icons-inner {
	display: block;
	text-align: center;
}

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

footer  .footer-icons > .footer-icons-inner .icon:nth-child(2) {
	margin-right: 0;
	width: 25%;
}

footer  .footer-icons > .footer-icons-inner .icon:nth-child(3) {
	display: block;
	margin: 0 auto;
	margin-top: 10px;
}

footer .footer-bottom {
	height: auto;
	padding-top: 22px;
	padding-bottom: 35px;
}

footer .footer-bottom > .bottom-inner {
	flex-direction: column;
	justify-content: center;
}

footer .footer-bottom > .bottom-inner .copyright-text {
	display: block;
	width: -moz-fit-content;
	width: fit-content;
	margin: 0 auto 10px;
}

footer .footer-bottom > .bottom-inner .developed-by {
	display: block;
	width: -moz-fit-content;
	width: fit-content;
	margin: 0 auto;
}

/* Newsletter pop-up */
.newsletter-pop-up {
	width: calc(100% - 30px) !important;
}

.newsletter-pop-up .newsletter-pop-up-content {
	padding: 20px 15px 40px;
}

.newsletter-pop-up .newsletter-pop-up-text-wrapper {
	text-align: center;
}

.newsletter-pop-up .newsletter-pop-up-text-wrapper .newsletter-pop-up-icon {
	margin: 0;
}

.newsletter-pop-up .newsletter-pop-up-text-wrapper .newsletter-pop-up-text {
	width: 100%;
	margin-top: 15px;
}

/* Autoship pop-up */
.autoship-pop-up {
	max-width: 320px !important;
}

.autoship-pop-up .autoship-pop-up-content {
	padding: 30px 20px;
}