*,
*:before,
*:after {
	box-sizing: border-box;
	outline: none;
}

html {
	font-family: var(--font);
	font-size: var(--glutter);
	color: var(--color);
	line-height: 1.3
}

body {
	font-size: var(--font-size);
}

.container {
	width: var(--content-width);
	max-width: 100%;
	margin: 0 auto;
	padding: 0 15px;
}

i,
em {
	font-family: var(--font-italic);
}

.medium>i,
i.medium,
.medium>em,
em.medium {
	font-family: var(--font-medium-italic);
}

b,
strong,
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-bold);
}

b>i,
b>em,
strong>i,
strong>em,
h1>i,
h1>em,
h2>i,
h2>em,
h3>i,
h3>em,
h4>i,
h4>em,
h5>i,
h5>em,
h6>i,
h6>em,
.bold>i,
.bold>em {
	font-family: var(--font-bold-italic);
}

p {
	margin-top: 0;
}

p:last-child,
p:last-of-type {
	margin-bottom: 0;
}

ul {
	margin: 0;
}

img {
	height: auto;
}

.select {
	overflow: hidden;
	width: 100%;
	position: relative;
	display: block;
	color: #333
}

select {
	cursor: pointer;
	width: 100%;
	border: 0px;
	background: #fff;
	padding: 15px 0px 10px 10px;
	font-size: 16px;
	appearance: none;
	border-radius: 0
}

.select::after {
	background-color: var(--orange);
	background-image: url(../images/icons/icon-select.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 13px;
	width: 34px;
	position: absolute;
	right: 0;
	top: 0;
	content: '';
	z-index: 1;
	text-align: center;
	height: 100%;
	pointer-events: none;
}

/* Header - top bar */

/** blog */
#blog {
	padding: 80px 0 40px 0;
}

#blog .container {
	width: 1000px;
}

#blog .left {
	width: 235px;
	float: left;
	padding: 0;
}

#blog .right {
	width: calc(100% - 235px);
	float: left;
	padding-left: 10px;
	max-width: 100%;
	padding-right: 0;
}

#blog .sidebar .sidebar-form {
	margin-top: 60px;
}

#blog .default-content {
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-align-content: stretch;
	-ms-flex-line-pack: stretch;
	align-content: stretch;
	-webkit-align-items: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
}

#blog .blog-item {
	width: 50%;
	padding: 0 20px;
	margin-bottom: 40px;
	min-height: 275px;
}

#blog .blog-item .inner:hover {
	background-color: #F32739;
}

#blog .blog-item .inner:hover div {
	color: white;
}

#blog .blog-item .inner:hover a {
	background-color: white !important;
	color: #F32739 !important;
}

#blog .blog-item .inner {
	height: 100%;
	border: 1px solid #cccccc;
	padding: 0 40px;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-align-content: flex-start;
	-ms-flex-line-pack: start;
	align-content: flex-start;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
}

#blog .blog-item .inner>div {
	width: 100%;
	max-width: 100%;
}

#blog .blog-item .inner .title {
	font-size: 35px;
	line-height: 1;
	font-family: 'assistantbold';
	color: #F32739;
	margin-bottom: 7px;
}

#blog .blog-item .inner .date {
	font-size: 20px;
	line-height: 1;
	font-family: 'assistantbold';
	color: #737373;
	margin-bottom: 15px;
}

#blog .blog-item .inner a {
	display: block;
	width: 180px;
	height: 55px;
	line-height: 55px;
	text-align: center;
	text-transform: uppercase;
	text-decoration: unset;
	color: white;
	max-width: 100%;
	background-color: #F32739;
	font-size: 18px;
	text-transform: uppercase;
	font-family: 'assistantbold';
}

#single-post {
	padding: 20px 0 70px 0;
	margin-top: 80px;
}

#single-post .container {
	width: 1000px;
	max-width: 100%;
	display: flex;
	flex-direction: column;
}

#single-post .container img {
	max-width: 100%;
}

#single-post .back.text-center a {
	font-size: 20px;
}

#single-post .back a {
	display: inline-block;
	font-size: 20px;
	font-family: 'assistantlight';
	text-decoration: none;
	color: #F32739;
	margin-bottom: 10px;

	text-decoration: underline;
}

#single-post .back a:before {
	content: "";
	display: inline-block;
	vertical-align: middle;
	width: 6px;
	height: 12px;
	background-image: url(../images/orange-carrot.png);
	background-repeat: no-repeat;
	background-position: center;
	margin-right: 5px;
	position: relative;
	top: -2px;
}

#single-post .image {
	margin-top: 15px;
}

#single-post .title {
	font-size: 35px;
	line-height: 1;
	font-family: 'assistantbold';
	color: #F32739;
	margin-bottom: 5px;
	margin-top: 35px;
}

#single-post .date {
	font-size: 20px;
	line-height: 1;
	font-family: 'assistantbold';
	color: #737373;
	margin-bottom: 30px;
}

#single-post .content p {
	font-size: 20px;
	line-height: 27px;
	font-family: 'assistantlight';
	color: #5d5d5d;
	margin: 0 0 30px 0;
}

/** career */
#about .join-title h1 {
	margin-bottom: 25px;
}

.join-title .left {
	font-size: 20px;
	line-height: 25px;
	color: #5d5d5d;
}

.heading_rto_blogs_single {
	font-size: 30px !important;
	color: black !important;
	padding: 10px 0px;
}

.join-title .right {
	font-size: 17px;
	line-height: 25px;
	color: #5d5d5d;
}

.join-title .right ul {
	padding: 0 0 0 55px;
	margin: 0;
}

.join-title .right ul li {
	padding: 0 0 0 10px;
	position: relative;
	margin: 0;
	list-style-type: none;
	font-weight: 400;
}

.join-title .right ul li:before {
	content: "•";
	font-size: 17px;
	display: block;
	position: absolute;
	left: 0;
	top: 0;
}

#about .stars-title {
	background-color: #F32739;
	background-position: 1% 50%, 99% 50%;
	background-repeat: no-repeat, no-repeat;
	background-image: url(../images/career-stars-left.png), url(../images/career-stars-right.png);
	text-align: center;
	padding: 21px 15px;
	margin: 55px 0 30px 0;
}

#about .stars-title h3 {
	margin: 0;
	font-size: 35px;
	color: white;
	font-family: 'assistantextrabold';
}

#about .career-icons {
	border-bottom: 1px solid #cccccc;
	padding-bottom: 30px;
	margin-bottom: 35px;
}

#about .career-icons ul {
	font-size: 0;
	padding: 0;
	margin: 0;
}

#about .career-icons ul li {
	padding: 0;
	margin: 0;
	vertical-align: text-bottom;
}

#about .career-icons ul li img {
	max-width: 100%;
	margin-bottom: 15px;
}

#about .career-icons ul li p {
	font-size: 25px;
	padding: 0;
	font-family: 'assistantbold';
	color: #F32739;
	margin: 0;
}

#about .career-icons ul li:not(:last-child) {
	margin-right: 100px;
}

#about #careers-container {
	width: 768px;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 75px;
}

#about #careers-container h2 {
	margin: 0 0 30px 0;
	font-size: 35px;
	color: #F32739;
	font-family: 'assistantextrabold';
}

#about .job-item {
	margin-top: 55px;
	display: none;
}

#about .job-item h3 {
	font-size: 25px;
	color: #737373;
	font-family: 'assistantextrabold';
}

#about .job-item p {
	padding: 0;
	margin: 0;
	font-size: 20px;
	line-height: 24px;
	color: #5d5d5d;
	font-family: 'assistantregular';
	font-weight: 400;
}

#about .job-item a {
	display: block;
	width: 200px;
	height: 46px;
	line-height: 46px;
	color: white;
	background-color: #F32739;
	font-size: 16px;
	font-family: 'assistantextrabold';
	margin: 30px 0 0 0;
}

.parent_grid {
	/* Parent grid styles */
	max-width: 1300px;
	margin-left: auto;
	margin-right: auto;

}

.parent_grid_columns {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	/* lg:grid-cols-3 */
	grid-gap: 2rem;
	/* gap-8 */
}

.parent_grid_gap {
	gap: 2rem;
	/* gap-8 */
}

.card_a {
	/* Card styles */

	overflow: hidden;


}

.drop-shadow-sm {
	filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.1));
}

.card_a_styles {
	border: 1px solid #ccc;
	/* border border-gray-300 */
	min-height: 390px;
}

.heading_rto_blogs {
	/* Heading styles */
}

.heading_styles {
	font-size: 12px;
	/* text-2xl */
	font-weight: 500;
	/* font-semibold */

	display: -webki1t-box;
	-webkit-line-clamp: 2;
	/* Number of lines to show */
	-webkit-box-orient: vertical;
	overflow: hidden;

}

.paragraph_styles {
	max-width: 100%;
	/* truncate-2 */
	font-size: 1rem;
	/* text-sm */
	color: #666;
	/* text-gray-600 */

	display: -webkit-box;
	-webkit-line-clamp: 1;
	/* Number of lines to show */
	-webkit-box-orient: vertical;
	overflow: hidden;

}

.paragraph_styles_single {
	max-width: 100%;
	/* truncate-2 */
	font-size: 1rem;
	/* text-sm */
	color: #666;
	/* text-gray-600 */

	padding-bottom: 10px;

}

.view_post {
	/* View post button styles */
}

.view_post_styles {
	display: inline-block;
	padding: 1rem 2rem;
	/* px-6 py-2 */
	background-color: #fa5661;
	/* bg-emerald-400 */
	color: #fff;
	/* text-white */
	text-decoration: none;

	outline: transparent;
	border: 1px solid transparent;
	margin-top: 10px;
	transition: 0.1s ease-in-out;
}

.view_post_styles:hover {
	background-color: #f32739;
}

.image_parent {
	/* Image container styles */
	text-align: center;
	height: 200px;
	border-bottom: 1px solid rgba(128, 128, 128, 0.391);

}

.image_parent img {

	object-fit: cover;
	height: 200px;
	width: 100%;
}

.card_inner_rto {
	padding: 0px 20px;
	padding-bottom: 20px;
}

.posted_ago {
	font-size: 14px;
	padding: 4px 0px;
	color: rgb(159, 159, 159);
}

/* For medium screens (md) */
@media (max-width: 768px) {
	.parent_grid_columns {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		/* md:grid-cols-2 */
	}
}

/* For small screens (sm) */
@media (max-width: 640px) {
	.parent_grid_columns {
		grid-template-columns: repeat(1, minmax(0, 1fr));
		/* grid-cols-1 */
	}
}


#careers input,
#careers textarea {
	color: #000;
}

#careers textarea {
	padding: 10px 15px;
	font-size: 1.125em;
}

#careers .button {
	color:#fff;
	text-transform: none;
	text-indent: 0%;
	max-width: 200px;
}

#careers-container a {
	color: white;
	background-color: #F32739;
	font-size: 16px;
	font-family: 'assistantextrabold';
	display: inline-block;
	height: 46px;
	line-height: 46px;
	padding: 0 40px;
}

#about.online-payment .container {
	width: 560px;
}

#about.online-payment h1 {
	margin: 0;
	font-family: 'assistantbold';
	text-transform: none !important;
}

#about.online-payment h2 {
	font-size: 20px;
	color: #777777;
	margin: 0;
	font-family: 'assistantbold';
	font-weight: 400;
}

#about.online-payment select {
	width: 100%;
	height: 46px;
	border: 1px solid #d7d7d7;
	padding: 0 18px;
	border-radius: 0;
	-webkit-border-radius: 0;
	box-shadow: none;
	-webkit-box-shadow: none;
	font-size: 17px;
	color: #777777;
	font-family: 'assistantsemibold';
	margin-top: 15px;
}

#about.online-payment input[type="submit"] {
	width: 100%;
	font-size: 16px;
	height: 46px;
	background-color: #F32739;
	color: white;
	font-family: 'assistantbold';
	border: 0;
	margin-top: 20px;
}

#about.online-payment .inner {
	border: 1px solid #cccccc;
	padding: 50px;
	margin-bottom: 100px;
	margin-top: 15px;
}

/** benefits */
#benefits {
	margin: 50px 0;
}

#benefits .stripe-inner {
	border: 1px solid #dadada;
	background-image: url(../images/bg.png);
	background-position: center;
	background-size: cover;
	padding: 40px 30px;
	font-size: 0;
}

#benefits .stripe-inner img {
	max-width: 100%;
}

.tb-inner {
	font-size: 1.06666667em;
	line-height: 1.1875;
	color: #fff;
	padding: 11px 0;
}


/* Header - main nav */
#store-selector {
	font-size: 15px;
}

#store-selector span,
#store-selector u {
	font-weight: 700;
}

#header-main {
	padding: 13px 0;
}

#header-main .side-nav-toggle {
	width: 23px;
	height: 18px;
}

#header-main .side-nav-toggle span {
	width: 100%;
	height: 3px;
	background-color: #000;
}

#header-main #logo {
	margin-right: 5rem;
}

#header-main #header-search {
	flex-basis: 300px;
	flex-shrink: 1;
}

#header-main #header-search form {
	max-width: 100%;
	height: 36px;
	border-radius: 100px;
}

#header-main #header-search button {
	width: 28px;
	height: 28px;
	margin: 3px;
	padding: 6px;
	outline: none;
	border-radius: 50%;
}

#header-main #header-search input,
#header-main #header-search ::placeholder {
	font-size: 13px;
	color: #222;
	line-height: normal;
	font-style: normal;
}

#header-main #header-search input {
	text-indent: 5px;
	padding: 0 0 0 10px;
	margin: 0;
	flex-grow: 1;
	outline: none;
}

#header-main .cart {
	margin-left: 16px;
	margin-right: 7px
}

#header-main .cart img {
	max-width: 39px
}

#header-main .quantity {
	visibility: hidden;
	color: var(--red);
	background-color: var(--yellow);
	border-radius: 50%;
	width: 21px;
	height: 21px;
	line-height: 21px;
	font-size: 14px;
	top: -9px;
	right: -5px
}

#header-main .quantity.visible {
	visibility: visible
}

#nav nav {
	flex-shrink: 0;
	padding: 12px 0;
}

#nav nav li {
	margin-left: 1.625em;
}

#nav nav li:first-child {
	margin-left: 0;
}

#nav nav li a {
	color: #000;
	font-size: 15px;
}

#nav .button {
	height: 64px;
	line-height: 64px;
	padding-top: 5px
}

#nav nav {
	flex-shrink: 0;
}

#nav nav>ul>li {
	margin-left: 2.8em;
}

#nav nav>ul>li.less-padding {
	margin-left: calc(2.1875em - 18px);
}

#nav nav>ul>li:first-child {
	margin-left: 0;
}

#nav nav>ul>li a {
	color: #fff;
	font-size: 16px;
	line-height: 24px;
	text-decoration: none !important;
}

#nav nav>ul>li.featured {
	position: relative;
}

#nav nav>ul>li.featured::before {
	content: '';
	background-image: url('../images/icons/icon-arrow-right-yellow.png');
	width: 16px;
	height: 12.5px;
	background-position: center;
	background-size: contain;
	position: absolute;
	right: -25px;
	top: 5px;
	pointer-events: none;
	background-repeat: no-repeat;
}

#nav nav .sub-menu {
	overflow: hidden;
	position: absolute;
	top: 42px;
	left: 0;
	visibility: hidden;
	opacity: 0;
	/* background: #fff; */
	margin: 0;
	padding: 0;
	z-index: 9;
	border-left: 3px solid #ffde16;
	white-space: nowrap;
}

#nav nav .sub-menu>ul {
	display: flex;
	margin: 19px 36px 26px 17px;
	gap: 62px;
}

#nav nav .sub-menu>ul>* {
	flex-shrink: 0;
}

#nav nav .sub-menu>ul li {
	line-height: 27px;
}

#nav nav .menu-item-has-children::before {
	content: '';
	background-image: url('../images/icons/icon-filter-select-arrow.png');
	width: 10.5px;
	height: 11px;
	background-position: center;
	background-size: contain;
	position: absolute;
	right: -18px;
	top: 6px;
	pointer-events: none;
	background-repeat: no-repeat;
}

#nav nav .menu-item-has-children::after {
	content: '';
	position: absolute;
	top: 82%;
	left: 0;
	height: 30px;
	width: 100%;
}

#nav nav .menu-item-has-children:hover .sub-menu {
	visibility: visible;
	opacity: 1;
}

#nav nav .menu-item-has-children:hover .sub-menu ul {
	list-style: none;
	padding: 0;
}

#nav nav .sub-menu .menu-item {
	margin-left: 0;
	line-height: 30.5px;
	margin-bottom: 0;
	min-width: 120px;
}

#nav nav .sub-menu .menu-item li {
	width: fit-content;
}

#nav nav .sub-menu .menu-item li.has-sub {
	position: relative;
	font-size: 15px;
}

#nav nav .sub-menu .menu-item li.has-sub a {
	color: #000;
}

/* #nav nav .sub-menu .menu-item li:first-child a::after, */
#nav nav .sub-menu .menu-item li.has-sub::before,
#nav nav .sub-menu .menu-item>a::after {
	content: '';
	position: absolute;
	width: 13px;
	height: 9.5px;
	top: 8px;
	right: -26px;
	background-image: url('../images/icons/nav-arrow.png');
	background-size: contain;
	background-position: center;
}

#nav nav .sub-menu .menu-item a {
	position: relative;
	color: #4c4c4c;
}

#nav nav .sub-menu .menu-item a:hover {
	text-decoration: none;
}

#nav nav .sub-menu .menu-item-sub a {
	font-size: 14px;
	color: #4c4c4c;
}

#nav nav .sub-menu img {
	max-width: 341px;
	object-fit: cover;
	object-position: left bottom;
}

#nav .button strong {
	padding-top: 2px;
}

#nav nav>ul>li a {
	color: #000;
}

.pay-online-mobile {
	width: 33px;
	height: 33px;
	border-radius: 50%;
	text-align: center;
	font-size: 24px;
	padding-top: 1px;
}

/* Mobile menu */
body {
	width: 100%;
	height: 100%;
}

.slideout-menu {
	position: fixed;
	top: 0;
	bottom: 0;
	width: 256px;
	min-height: 100vh;
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
	z-index: 0;
	display: none;
}

.slideout-menu-left {
	left: 0;
}

.slideout-menu-right {
	right: 0;
}

.slideout-panel {
	position: relative;
	z-index: 1;
	background-color: #FFF;
	/* A background-color is required */
	min-height: 100vh;
}

.slideout-open,
.slideout-open body,
.slideout-open .slideout-panel {
	overflow: hidden;
}

.slideout-open .slideout-menu {
	display: block;
}

.slideout-menu a,
.slideout-menu span {
	font-size: 18px;
}

.slideout-menu li:not(.language-selector) a {
	width: 256px
}

#panel:before {
	content: '';
	display: block;
	transition: background-color 0.5s ease-in-out;
}

#panel.panel-open:before {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 100%;
	background-color: rgba(0, 0, 0, .5);
	z-index: 99;
}

@media screen and (min-width: 922px) {
	.slideout-menu {
		display: none
	}
}

/* Footer */
footer {
	font-size: 13px
}

footer .title {
	font-size: 14px
}

footer .select::after {
	background-size: 10px
}

footer select {
	font-size: 14px;
	padding: 12px 0px 7px 10px;
}

footer .disclaimer {
	padding-top: 2%;
}

.footer-social {
	column-gap: 10px;
}

.footer-disclaimer {
	font-size: 13px;
	background-color: #ebebeb;
}


/* Hero: */
@media screen and (min-width: 767px) {
	body:not(.home) #hero {
		height: 290px
	}
}

@media screen and (max-width: 567px) {
	body:not(.home) #hero .hero-inner {
		padding: 50px 0
	}

	body:not(.home) #hero h1 {
		margin-top: 0
	}
}

/* Footer Newsletter */
#newsletter p {
	font-size: 24px;
	text-align: left;
}

#newsletter .sub {
	font-size: 14px
}

#newsletter form {
	width: 416px;
	max-width: 100%;
	height: 45px;
}

#newsletter form input,
#newsletter form button {
	outline: none;
	appearance: none;
	border-radius: 0;
}

#newsletter form input,
#newsletter ::placeholder {
	color: #222;
	line-height: 45px
}

#newsletter form input {
	flex-grow: 1;
	text-indent: 15px;
	padding: 4px 0 0 0;
	margin: 0;
}

#newsletter form button {
	width: 100px;
	font-size: 16px;
	font-weight:700;
}

#newsletter form button strong {
	font-weight:700;
}
@media screen and (max-width: 991px) {
	#newsletter>.flex {
		flex-direction: column;
		text-align: center;
	}

	#newsletter .col-6 {
		width: 100%
	}
}

@media screen and (max-width: 567px) {
	#newsletter {
		padding: 35px 0 40px;
	}

	#newsletter p {
		font-size: 1.733333em;
	}

	#newsletter .sub {
		font-size: 14px
	}
}

/* Products */
.products-slider.swiper-container {
	flex-grow: 1;
	padding: 10px;
	margin: -10px;
}

.products-slider-control .swiper-button-next,
.products-slider-control .swiper-button-prev {
	width: 38px;
	height: 38px;
	top: inherit;
	left: inherit;
	right: inherit;
	box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.1);
	margin: 0 11px;
	position: relative;
	outline: none;
}

.products-slider-control .swiper-button-next {
	margin-right: 0;
}

.products-slider-control .swiper-button-prev:after,
.products-slider-control .swiper-container-rtl .swiper-button-next:after,
.products-slider-control .swiper-button-next:after,
.products-slider-control .swiper-container-rtl .swiper-button-prev:after {
	display: none;
}

.products-details {
	padding: 0 35px;
}

.products-details .products-title {
	font-size: 1em;
	line-height: 1.25;
	color: #232323;
}

.products-details span {
	font-size: 1.625em;
}

.products-details i {
	font-size: 1em;
	color: #000000;
}

.products-details p {
	font-size: 0.875em;
	color: #00aeef;
	margin-top: 12px;
}

.products-image {
	flex-grow: 1;
}

[data-quick] {
	color: #fff;
	padding: 10px 25px 9px;
	font-size: 0.875em;
	z-index: 1;
}

.on-hover {
	opacity: 0;
	visibility: hidden;
	transition: opacity .3s;
}

.hover-box:hover .on-hover {
	opacity: 1;
	visibility: visible;
}

/* Popups */
body.scolllock-on {
	width: 100%;
	overflow: hidden;
}

.popup {
	width: 100%;
	height: 100%;
	z-index: 999;
	overflow: auto;
}

.popup-overlay {
	width: 100%;
	height: 100%;
	background-color: rgba(240, 240, 240, .7);
	z-index: -1;
}

.popup-content {
	max-width: calc(100% - 30px);
}

.popup-inner {
	max-width: 100%;
}

.popup-close {
	width: 15px;
	height: 15px;
	top: 20px;
	right: 20px;
	z-index: 9
}

.popup-close:not(.uses-image):before,
.popup-close:not(.uses-image):after {
	content: '';
	display: block;
	position: absolute;
	width: 1px;
	height: 21px;
	background-color: #a1a1a1;
	transform: rotate(45deg);
}

.popup-close:not(.uses-image):after {
	transform: rotate(-45deg);
}

/* Forms */
.form-field {
	padding: 10px 15px;
	flex-grow: 1;
}

.form-field input,
.form-field select {
	height: 50px;
	width: 100%;
	text-indent: 19px;
	padding: .2em 0 0;
}

.form-field select {
	appearance: none;
}

.form-field input,
.form-field select,
.form-field ::placeholder {
	font-size: 1em;
	color: var(--darker-gray);
}

.form-field ::placeholder {
	opacity: 1;
}

.form-action {
	padding-top: 14px;
}

.form-action [type="submit"].button {
	padding: 10px 29px 9px;
	font-size: 0.875em;
}

/* Forms - checkout */
.checkout-step .form-field {
	padding: 0;
	margin-bottom: 24px;
}

.checkout-step .form-field input,
.checkout-step .form-field select {
	height: 45px;
}

.checkout-step .form-field input:focus,
.checkout-step .form-field select:focus {
	border-color: var(--red);
}

.form-field input,
.form-field select {
	font-size: 1.125em;
}

.form-field select {
	background-size: 13px 9px;
	background-repeat: no-repeat;
	background-position: calc(100% - 10px) center;
	background-image: url(../images/icons/icon-down-arrow-gray.png);
}

.form-field select.double-arrow {
	background-size: 11px 23px;
	background-position: calc(100% - 15px) center;
	background-image: url(../images/icons/icon-double-arrow-gray.png);
}

/* Product */
.price {
	line-height: 1;
	margin: -0.22em auto 0;
}

.price-main {
	font-size: 1em;
}

.price-main sup {
	font-size: 43%;
	top: -.75em;
}

.price-main sup.decimal {
	font-size: 56%;
	top: inherit;
	vertical-align: baseline;
	line-height: 1.07;
}

.price-main .period {
	font-size: 46%;
}

.price-weekly {
	font-size: 17.777%;
	color: #000;
}

/* Breadcrumb */

#breadcrumb {
	font-size: 0.875em;
}

.bc-inner {
	padding: 30px 0 0;
}

#breadcrumb * {
	color: #8c8c8c;
	text-decoration: none;
}

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

	#top-nav #store-selector,
	#header-main #logo {
		padding-left: 0;
	}

	#header-main #logo {
		margin-right: 1em;
	}

	#header-main nav li {
		margin-left: 1.5em;
	}

	#nav nav li {
		margin-left: 15px
	}

	#nav nav li a {
		font-size: 14px
	}

	footer .col-3 {
		width: 50%;
		max-width: 300px
	}

}

@media screen and (max-width: 991px) {
	body {
		font-size: 15px;
	}

	#header-main #header-search {
		margin-left: auto;
		/* margin-right: auto; */
	}

	#header-main #side-nav-toggle-left {
		display: none
	}

	#footer-nav>.flex {
		flex-direction: column
	}

	#footer-nav .col-6 {
		width: 100%
	}

	#footer-nav>.flex>.col-6:last-child {
		margin-top: 30px
	}
}

@media screen and (max-width: 767px) {
	.products-slider.swiper-container {
		margin: -10px -15px;
	}

	footer>.flex {
		flex-direction: column
	}

	footer>.flex>div {
		width: 100%
	}

	footer>.flex>div:last-child {
		margin-top: 50px
	}

	#copyright {
		margin-top: 30px
	}

	footer .col-3,
	#copyright {
		text-align: center
	}

	footer .col-3 .flex {
		justify-content: center
	}

	footer .col-3 {
		margin-left: auto;
		margin-right: auto
	}
}

@media screen and (min-width: 568px) {
	#header-main .side-nav-toggle {
		order: 3;
		margin-right: 0;
		margin-left: 10px;
	}

	#menu.slideout-menu.slideout-menu-right.slideout-menu-left {
		left: auto
	}
}

@media screen and (max-width: 567px) {
	.tb-inner {
		padding: 9px 0;
		line-height: 1.125;
	}

	#header-main {
		position: relative;
		background-color: #fff;
	}

	#header-main #side-nav-toggle-left {
		display: flex
	}

	#header-main #side-nav-toggle-right {
		display: none
	}

	#header-main #header-search {
		position: absolute;
		width: 100%;
		background-color: #fff;
		left: 0;
		padding: 15px;
		bottom: 0;
		z-index: -1;
		transition: all .3s;
		opacity: 0;
	}

	#header-main.search-on #header-search {
		bottom: -77px;
		z-index: 2;
		opacity: 1;
	}

	#header-main #logo {
		width: 116px;
		margin-left: 1em;
		margin-right: auto;
	}

	#header-main .cart {
		margin-right: 0;
	}

	.header-icons li {
		margin-left: 1.733em;
	}

	.form-field {
		padding: 10px;
	}

	.form-field input,
	.form-field select {
		height: 45px;
	}

	.products-details {
		padding: 0 10px;
	}

	.products-details .products-title {
		font-size: 0.875em;
		line-height: 1.333;
		margin-bottom: 5px;
	}

	.products-details .products-title br {
		display: none;
	}

	.products-details span {
		font-size: 1em;
	}

	.products-details i {
		font-size: 0.66em;
	}

	.products-details p {
		font-size: 0.6em;
		margin-top: 9px;
	}

	footer {
		padding: 50px 0 !important;
	}

	#breadcrumb {
		font-size: 0.7333em;
	}

	.bc-inner {
		padding-top: 15px;
	}

	.products-slider-control {
		top: 50%;
		z-index: 1;
		width: 100%;
		left: 0;
		margin-top: -19px;
		pointer-events: none;
	}

	.products-slider-control .swiper-button-next,
	.products-slider-control .swiper-button-prev {
		pointer-events: all;
		margin: 0 15px;
		background-color: #fff;
	}

	.checkout-step .form-field {
		margin-bottom: 14px;
	}

	.checkout-step .form-field input,
	.checkout-step .form-field select {
		text-indent: 15px;
	}

	.form-field input,
	.form-field select {
		font-size: 1em;
	}

	.form-field select.double-arrow {
		background-size: 10px 21px;
	}
}


#why .container .inner .title {
	font-size: 40px;
	line-height: 1;
	font-family: 'titan_oneregular';
	color: #F32739;
	text-align: center;
	margin-bottom: 25px;
}

#why .table {
	width: 681px;
	max-width: 100%;
	display: inline-block;
	vertical-align: top;
	margin-bottom: 0;
}

#why .table .thead {}

#why .table .td span {
	font-family: 'assistantsemibold';
	font-style: italic;
	margin: 0 5px;
	display: inline-block;
}

#why .table .th.orange-border {
	border: 1px solid #F32739;
	position: relative;
	margin-right: 1px;
}

#why .table .th.orange-border:before {
	content: "";
	display: block;
	position: absolute;
	background-image: url(../images/icon-dude.png);
	width: 59px;
	height: 76px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	top: -6px;
	left: -52px;
}

#why .table .th {
	border-bottom: 1px solid #e8e8e8;
	border-top: 1px solid #e8e8e8;
	display: inline-block;
	vertical-align: top;
	height: 40px;
	border-right: 1px solid #e8e8e8;
	display: -ms-inline-flexbox;
	display: -webkit-inline-flex;
	display: inline-flex;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-align-content: stretch;
	-ms-flex-line-pack: stretch;
	align-content: stretch;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: white;
	padding: 5px;
	text-align: center;
	line-height: 1;
}

#why .table .thead .tr {
	border-left: 0;
}

#why .table .tr {
	font-size: 0;
	border-left: 1px solid #e8e8e8;
}

#why .table .tbody .tr:first-child .td:first-child {
	border-top: 1px solid #e8e8e8;
}

#why .table .td {
	line-height: 1;
	border-bottom: 1px solid #e8e8e8;
	background-color: #ffffff;
	display: inline-block;
	vertical-align: top;
	border-right: 1px solid #e8e8e8;
	height: 40px;
	padding: 5px;
	text-align: center;
	display: -ms-inline-flexbox;
	display: -webkit-inline-flex;
	display: inline-flex;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-align-content: stretch;
	-ms-flex-line-pack: stretch;
	align-content: stretch;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

#why .table .tr .td:first-child,
#why .table .tr .th:first-child {
	font-size: 19.49px;
	font-family: 'assistantlight';
	color: #1d3460;
	width: 380px;
	text-align: center;
}

#why .table .tr .td:not(:first-child),
#why .table .tr .th:not(:first-child) {
	width: 75px;
	font-size: 14.6px;
	font-family: 'assistantbold';
	color: #1d3460;
}

#why .table .checked {
	background-image: url(../images/orange-checked.png);
	background-repeat: no-repeat;
	background-position: center;
}

#why .table .checked.orange {
	background-color: #F32739;
	background-image: url(../images/white-checked.png);
}

#why .table .empty {
	border: 0;
	background-color: transparent;
	background-image: none;
}

#why .promise {
	vertical-align: top;
	display: inline-block;
	width: calc(100% - 681px);
	padding: 0 30px;
	text-align: center;
}

#why .promise .promise-title {
	font-size: 26px;
	line-height: 35px;
	margin-bottom: 5px;
	color: #1d3460;
	font-family: 'assistantextrabold';
}

#why .promise p {
	font-size: 21px;
	line-height: 1.2;
	margin: 0;
	letter-spacing: 0.5px;
	color: #5d5d5d;
}

#why .promise img {
	margin-top: 30px;
}

/** why ends */

/** banner starts */
#banner {
	position: relative;
	background-image: url(../images/banner-bg.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	min-height: 160px;
}

#banner:before {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	right: 0;
	background-image: url(../images/cards-right.png);
	background-repeat: no-repeat;
	background-position: center;
	width: 138px;
	height: 143px;
}

#banner .left {
	width: 47%;
	float: left;
}

#banner .right {
	width: 53%;
	float: left;
}

#banner .right img {
	max-width: 100%;
}

#banner .title {
	font-size: 45.9px;
	color: white;
	font-family: 'bree_serifregular';
	text-transform: uppercase;
	letter-spacing: 1px;
	line-height: 1;
	margin-top: 30px;
	margin-bottom: 5px;
}

#banner .sub-title {
	font-size: 29.7px;
	font-family: 'assistantextralight';
	color: white;
}

#banner .sub-title strong {
	font-family: 'assistantextrabold';
}

#banner .sub-title a {
	font-size: 14.9px;
	font-family: 'assistantbold';
	color: white;
	background-color: #F32739;
	width: 155px;
	height: 45px;
	display: inline-block;
	vertical-align: middle;
	line-height: 45px;
	text-align: center;
	margin-left: 5px;
	position: relative;
}

#banner .right {
	padding-top: 10px;
	text-align: left;
}

#banner .sub-title a:after {
	content: "";
	display: block;
	position: absolute;
	right: -95px;
	top: -50px;
	background-image: url(../images/icon-dude-bigger.png);
	background-repeat: no-repeat;
	width: 77px;
	height: 100px;
}

/** banner ends */

/** about starts */
#about {
	margin-top: 35px;
}

#about .left .inner {
	width: 560px;
	max-width: 100%;
}

#about h1 {
	font-size: 34.7px;
	color: #F32739;
	font-family: 'assistantextrabold';
	text-transform: uppercase;
	line-height: 1;
	margin: -5px 0 10px 0;
}

#about p {
	font-size: 18px;
	line-height: 1.3;
	color: #5d5d5d;
	padding-right: 30px;
}

#about blockquote {
	margin: -10px 0 40px 0;
	font-size: 32px;
	border: 10px solid #d7d7d7;
	background: #F32739;
	color: white;
	line-height: 1;
	text-align: center;
	font-family: 'assistantbold';
	padding: 30px;
	width: 100%;
	max-width: 100%;
}

#about img {
	max-width: 100%;
	margin-bottom: 15px;
}

/** about ends */


/** locations starts */
#locations-intro {
	margin-top: 35px;
}

#locations-intro .left {
	padding-left: 0;
	padding-right: 35px;
}

#locations-intro .right {
	padding-right: 0;
}

#locations-intro .right .stars-cta {
	width: 375px;
	max-width: 100%;
	margin: 0 0 0 auto;
}

#locations-intro h1 {
	font-size: 34.7px;
	color: #F32739;
	font-family: 'assistantextrabold';
	text-transform: uppercase;
	line-height: 1;
	margin: -5px 0 10px 0;
}

#locations-intro p {
	font-size: 18px;
	line-height: 1.3;
	color: #5d5d5d;
	width: 930px;
	max-width: 100%;
}

#location-map {
	margin-bottom: 40px;
	height: 505px;
}

#locations .left {}

#locations .right {
	height: 505px;
	overflow: auto;
	padding-top: 50px;
}

#locations {
	margin-bottom: 0;
}

#locations .locations-item {
	margin-bottom: 45px;
}

#locations .locations-item:nth-child(2n+1) {
	clear: left;
}

#locations .locations-item .inner {
	width: 235px;
	max-width: 100%;
	margin: 0 auto;
	padding-left: 28px;
}

#locations .locations-item .inner .name {
	font-size: 18px;
	color: #1d3460;
	font-family: 'assistantbold';
	text-transform: uppercase;
	line-height: 21px;
	margin-bottom: 5px;
}

#locations .locations-item .inner .address {
	font-size: 18px;
	line-height: 20px;
	color: #757575;
	position: relative;
}

#locations .locations-item .inner .address:before {
	content: "";
	display: block;
	position: absolute;
	left: -28px;
	top: 0;
	background-image: url(../images/icon-marker.png);
	width: 18px;
	height: 29px;
}

#locations .locations-item .inner .phone {
	position: relative;
	margin-top: 5px;
}

#locations .locations-item .inner .phone:before {
	content: "";
	display: block;
	position: absolute;
	left: -28px;
	top: 5px;
	background-image: url(../images/icon-phone.png);
	width: 20px;
	height: 20px;
}

#locations .locations-item .inner .phone a {
	font-size: 18px;
	font-family: 'assistantbold';
	color: #F32739;
}

#locations .locations-item .inner .view-details a {
	background-color: rgb(252, 105, 27);
	font-family: 'assistantbold';
	width: 127px;
	height: 38px;
	max-width: 100%;
	display: block;
	line-height: 38px;
	text-align: center;
	text-transform: uppercase;
	color: white;
	margin: 20px 0 5px 0;
}

#locations .locations-item .inner .get-directions a {
	color: #3765be;
	font-size: 16px;
}

#locations hr {
	margin-top: 0;
	margin-bottom: 40px;
	border-color: #cccccc;
}

/** locations ends */

/** product detail starts */
.product-detail-main .left {
	width: 57%;
}

.product-detail-main .right {
	width: 43%;
}

.gallery-top {
	margin-top: 10px;
	margin-bottom: 10px;
	text-align: center;
}

.gallery-top img {
	max-width: 100%;
	max-height: 510px;
}

.gallery-top .swiper-slide {
	border-bottom: 1px solid #d7d7d7;
}

.gallery-top .swiper-slide a {
	position: absolute;
	right: 0;
	bottom: 5px;
	background-image: url(../images/icon-finder-orange.png);
	width: 27px;
	height: 27px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.gallery-thumbs .swiper-slide {
	width: 80px;
	height: 60px;
	border: 1px solid #cccccc;
	display: inline-block;
	vertical-align: top;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	margin-bottom: 15px;
}

.gallery-thumbs .swiper-slide-active {
	border: 2px solid #F32739;
}

.gallery-thumbs .swiper-wrapper {
	transform: none !important;
	text-align: center;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-align-content: stretch;
	-ms-flex-line-pack: stretch;
	align-content: stretch;
	-webkit-align-items: center;
	-ms-flex-align: cente
}

.gallery-thumbs .swiper-button-next {
	background-image: url(../images/swiper-next.png);
	width: 15px;
	height: 29px;
	background-size: cover;
	right: 0;
	margin-top: -14.5px;
}

.gallery-thumbs .swiper-button-prev {
	background-image: url(../images/swiper-prev.png);
	width: 15px;
	height: 29px;
	background-size: cover;
	left: 0;
	margin-top: -14.5px;
}

.product-detail-main .product-description,
.product-spec {
	padding-top: 30px;
}

.product-detail-main .product-description {
	padding-bottom: 60px;
}

.product-detail-main .product-description h3,
.product-spec h3 {
	font-size: 24px;
	font-family: 'assistantbold';
	color: #1d3460;
	margin: 0 0 10px 0;
}

.product-detail-main .product-description p,
.product-spec p {
	font-size: 18px;
	line-height: 26px;
	color: #757575;
	margin-bottom: 15px;
}

.product-spec {
	margin-bottom: 60px;
}

.product-spec h4 {
	font-size: 18px;
	color: #F32739;
	font-family: 'assistantbold';
	margin-top: 20px;
}

.product-spec .inner {
	width: 500px;
	max-width: 100%;
}

.product-spec table {
	width: 100%;
}

.product-spec table tr {
	height: 47px;
	border-bottom: 1px solid #cccccc;
	font-size: 18px;
	color: #5d5d5d
}

.product-spec table tr:last-child {
	border-bottom: 0;
}

.product-spec table td {
	padding: 0 20px;
}

.product-detail-main .right .inner {
	width: 490px;
	max-width: 100%;
	border: 1px solid #cccccc;
	padding-top: 25px;
	text-align: center;
}

.product-detail-main .right .inner+p {
	font-size: 14px;
	text-align: center;
	padding-top: 10px;
	line-height: 1.3;
	padding-left: 15px;
	padding-right: 15px;
}

.product-detail-main .right .inner .product-title {
	font-size: 34px;
	line-height: 36px;
	padding: 0 30px;
	font-family: 'assistantbold';
	color: #1d3460;
	margin: 0;
}

.product-detail-main .right .inner .product-sku+div {
	font-size: 0;
	padding: 10px 0 25px 0;
	width: calc(100% - 40px);
	margin: 0 auto;
	border-bottom: 1px solid #cccccc;
	display: none !important;
}

.product-detail-main .right .inner .product-sku+div>img {
	margin-right: 20px;
	vertical-align: middle;
	display: inline-block;
}

.product-detail-main .right .inner .product-sku+div>span {
	width: 130px;
	height: 35px;
	border-radius: 16px;
	-webkit-border-radius: 16px;
	border: 1px solid #00a651;
	line-height: 35px;
	text-align: center;
	font-size: 18px;
	color: #1fae23;
	display: inline-block;
	vertical-align: middle;
}

.product-detail-main .right .inner .product-sku+div>span img {
	display: inline-block;
	vertical-align: middle;
	margin-right: 5px;
	position: relative;
	top: -1px;
}

.product-detail-main .right .inner .product-sku {
	font-family: 'assistantregular';
	font-size: 18px;
	margin-top: 3px;
	color: #757575
}

.product-detail-main .right .inner .product-price {
	margin-top: 15px;
	color: #ff6c00;
	font-family: 'titan_oneregular';
	line-height: 1;
	font-size: 84px;
	position: relative;
	text-align: center;
}

.product-detail-main .right .inner .product-price>span:first-child {
	font-size: 47px;
}

.product-detail-main .right .inner .product-price>span {
	font-size: 40px;
	display: inline-block;
	vertical-align: super;
	position: relative;
	top: 3px;
}

.product-detail-main .right .inner .product-price span.smaller {
	font-size: 23px;
	font-family: 'assistantregular';
	position: absolute;
	bottom: -22px;
	left: 0px;
	margin-left: 0;
	white-space: nowrap;
}

.product-detail-main .right .inner .under-rent+div {
	font-size: 20px;
	padding: 20px 0 25px 0;
	width: calc(100% - 40px);
	margin: 0 auto;
	color: #F32739;
	font-family: 'assistantbold';
	border-top: 1px solid #cccccc;
}

.product-detail-main .right .inner .rent-it {
	margin-top: 10px;
}

.product-detail-main .right .inner .rent-it a {
	display: block;
	height: 70px;
	line-height: 70px;
	color: white;
	background-color: #F32739;
	text-align: center;
	font-size: 20px;
	font-family: 'assistantbold';
}

.product-detail-main .right .inner .under-rent {
	font-size: 0;
	padding: 30px;
}

.product-detail-main .right .inner .under-rent li {
	width: 33.3333%;
	vertical-align: bottom;
}

.product-detail-main .right .inner .under-rent li img {
	max-width: 100%;
	margin-bottom: 15px;
}

.product-detail-main .right .inner .under-rent li span {
	display: block;
	font-size: 16px;
	line-height: 1.3;
	color: #1d3460;
	font-family: 'assistantsemibold';
}

/** product-detail ends */

/* locations details starts */
.location-detail {
	margin-top: 20px;
}

.location-detail .location-header {}

.location-detail .location-header .title {
	font-size: 20px;
	line-height: 25px;
	color: #737373;
	font-family: 'assistantbold';
	margin-bottom: 15px;
}

.location-detail .location-header .title strong {
	display: block;
	font-size: 34.7px;
	color: #F32739;
	text-transform: uppercase;
	font-family: 'assistantextrabold';
	line-height: 1;
}

.location-detail .location-header .image img {
	max-width: 100%;
	border: 1px solid #cccccc;
	margin-bottom: 20px;
}

.location-detail .location-description p {
	font-size: 17px;
	line-height: 24px;
	color: #5d5d5d;
	margin-bottom: 20px;
}

.location-detail .location-description p strong {
	color: #F32739;
	font-size: 20px;
}

.location-detail .location-description p:last-child strong {
	color: #1d3460;
	font-size: 17px;
}

.location-detail .location-links {}

.location-detail .links-stars .left {
	padding-left: 0;
}

.location-detail .links-stars .right {
	padding-right: 0;
	padding-top: 25px;
}

.location-detail .location-links .links-title {
	padding-top: 15px;
	font-size: 25px;
	font-family: 'assistantbold';
	color: #757575;
	border-bottom: 10px solid #d7d7d7;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.location-detail .location-links .links-items a {
	font-size: 18px;
	font-family: 'assistantlight';
	color: #3765be;
	line-height: 26px;
}

.location-detail .location-social {
	font-size: 20px;
	color: #F32739;
	font-family: 'assistantbold';
	margin-top: 30px;
	padding-top: 25px;
	border-top: 1px solid #dddddd;
}

.location-detail .location-social ul {
	font-size: 0;
	text-align: right;
	margin-top: -5px;
}

.location-detail .location-social ul li {
	padding-left: 0;
	vertical-align: top;
}

.location-detail .location-social ul li:not(:last-child) {
	padding-right: 25px;
}

.location-detail .location-social ul li a {
	font-size: 28px;
	color: #cccccc;
}

.location-detail .location-social ul li a:hover {
	color: #e25e18;
}

.location-detail .location-images {
	font-size: 0;
	margin-top: 10px;
}

.location-detail .location-images .image-item {
	width: calc(33.333333% - 10px);
	display: inline-block;
	vertical-align: top;
	margin-bottom: 15px;
}

.location-detail .location-images .image-item:not(:nth-child(3n+3)) {
	margin-right: 15px;
}

.location-detail .location-images .image-item img {
	max-width: 100%;
}

.location-detail .location-images .image-item a {
	display: block;
	height: 188px;
	width: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.location-detail #single-location-map {
	height: 260px;
	border: 1px solid #cccccc;
	margin-top: 75px;
}

.location-detail .location-map-title {
	text-align: center;
	padding: 15px 30px 10px 30px;
	border: 1px solid #cccccc;
	border-top: 0;
	border-bottom: 0;
}

.location-detail .location-map-title p {
	color: #1d3460;
	line-height: 1.3;
	margin: 0 0 0 0;
	font-family: 'assistantsemibold';
}

.location-detail .location-map-title hr {
	border-color: #d4d4d4;
	margin-bottom: 10px;
}

.location-detail .location-map-title a {
	font-size: 25px;
	font-family: 'assistantbold';
	color: #F32739;
}

.location-detail .small-right a.orange-button {
	font-size: 20px;
	color: #ffffff;
	font-family: 'assistantbold';
	height: 68px;
	line-height: 68px;
	text-align: center;
	text-transform: uppercase;
	display: block;
	background-color: #c14f12;
}

.location-detail .location-sidebar {
	margin-top: 20px;
	border: 1px solid #cccccc;
	text-align: center;
	padding-top: 35px;
}

.location-detail .location-sidebar .location-sidebar-header p strong {
	font-size: 28px;
	font-family: 'assistantbold';
	color: #F32739;
	display: block;
	margin: 20px 0 5px 0;
}

.location-detail .location-sidebar .location-sidebar-header p {
	font-size: 20px;
	line-height: 25px;
	color: #5d5d5d;
}

.location-sidebar .location-hours {
	padding-top: 10px;
	padding-left: 30px;
	padding-right: 30px;
	margin-bottom: 0;
	padding-bottom: 10px;
}

.location-sidebar .location-hours .title {
	font-size: 28px;
	color: #1d3460;
	text-align: center;
	font-family: 'assistantbold';
	margin-bottom: 15px;
}

.location-sidebar .location-hours .hours-item {
	font-size: 0;
	width: 245px;
	max-width: 100%;
	margin: 0 auto;
}

.location-sidebar .location-hours .hours-item:not(:last-child) {
	border-bottom: 1px solid #d7d7d7;
}

.location-sidebar .location-hours .hours-item>div {
	width: 50%;
	display: inline-block;
	vertical-align: top;
	padding: 0 10px;
	font-size: 17px;
	line-height: 32px;
	text-align: left;
}

.location-sidebar .location-hours .hours-item>div:nth-child(2) {
	padding-left: 20px;
}

.location-sidebar .location-hours hr {
	border-color: #d4d4d4;
	margin: -15px 0 10px 0
}

.location-sidebar .hours+hr {
	margin-top: 25px;
}

.location-sidebar .location-form .title {
	font-size: 28px;
	color: #1d3460;
	text-align: center;
	font-family: 'assistantbold';
	margin-bottom: 15px;
}

.vip-form textarea {
	resize: vertical;
}

.vip-form input+label,
.vip-form textarea+label {
	font-size: 17px;
	padding: 0 15px;
	display: block;
	color: #777777;
	position: absolute;
	line-height: 54px;
	top: 0;
	font-family: 'assistantsemibold';
	margin: 0;
	width: 100%;
	text-align: left;
	height: 100%;
	font-weight: normal;
}

.location-sidebar form {
	padding: 0 30px;
}

.location-sidebar form>div {
	position: relative;
	margin-bottom: 18px;
}

.full {
	width: 100% !important;
}

.location-form .title {
	font-size: 25px;
	text-align: center;
	margin-bottom: 5px;
}

.location-form input:not([type="submit"]), .location-form label {
	height: 40px !important;
	line-height: 40px !important;
}

.location-form input:not([type="submit"]), .location-form label {
	height: 46px !important;
	line-height: 46px !important;
}

.location-form textarea {
	height: 120px;
}

.location-form .orange-button {
	margin-top: 0 !important;
	font-size: 20px;
	color: #ffffff;
	font-family: 'assistantbold';
	height: 68px;
	line-height: 68px;
	text-align: center;
	text-transform: uppercase;
	display: block;
	background-color: #c14f12;
	border: 0;
	margin-bottom: 35px;
}

.location-form .orange-button:hover,
.location-form .orange-button:focus,
.location-form .orange-button:active {
	background-origin: #c14f12;
}

.vip-form input:not([type="submit"]), .vip-form input[type="file"]+label, .vip-form textarea {
	width: 100%;
	background-color: white;
	height: 54px;
	border: 1px solid #cccccc;
	color: black;
	font-size: 16px;
	padding: 0 15px;
}

.vip-form textarea {
	height: 120px;
}

.vip-form .not-empty+label,
.vip-form input:focus+label,
.vip-form textarea:focus+label {
	display: none;
}

.location-detail>.container>hr {
	border-color: #cccccc;
	margin: 10px 0 0 0;
}

#top-picks {
	padding-bottom: 70px;
}

#top-picks .title {
	text-align: center;
	font-size: 33px;
	font-family: 'assistantlight';
	color: #1d3460;
	padding: 15px 0 20px 0;
}

#top-picks .picks {
	padding: 0 10px;
}

#top-picks .pick-item {
	padding: 0 5px;
	text-align: center;
}

#top-picks .pick-item .image {
	height: 290px;
	text-align: center;
	line-height: 290px;
	position: relative;
	margin-bottom: 15px;
	padding: 0 15px;
}

#top-picks .pick-item .image img {
	max-width: 100%;
}

#top-picks .pick-item:hover .image {
	line-height: 235px;
}

#top-picks .pick-item .image a>span {
	bottom: -55px;
	height: 55px;
	line-height: 55px;
	text-transform: uppercase;
	font-size: 16px;
	color: white;
	font-family: 'assistantbold';
	text-align: center;
	background-color: #F32739;
	z-index: 2;
}

#top-picks .pick-item:hover .image a span {
	bottom: 0;
}

#top-picks .pick-item:hover .image .price-badge {
	right: 10px;
	bottom: 60px;
}

#top-picks .pick-item .image a {
	display: block;
}

#top-picks .pick-item .image .price-badge {
	line-height: 1;
	height: 110px;
	width: 110px;
	border-radius: 100%;
	-webkit-border-radius: 100%;
	font-size: 43.35px;
	color: #ffffff;
	font-family: 'titan_oneregular';
	background-color: var(--brand-orange);
	right: 10px;
	bottom: 10px;
	position: absolute;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-align-content: stretch;
	-ms-flex-line-pack: stretch;
	align-content: stretch;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

#top-picks .pick-item .image .price-badge>div {
	width: 100%;
}

#top-picks .pick-item .image .price-badge>div>span {
	font-size: 24px;
	vertical-align: super;
	display: inline-block;
}

#top-picks .pick-item .image .price-badge>div>span.small {
	font-size: 20px;
	position: relative;
}

#top-picks .pick-item .image .price-badge>div>span>span.smaller {
	margin-right: -4px;
	font-size: 12px;
	vertical-align: super;
	display: inline-block;
	font-family: 'assistantregular';
	position: absolute;
	bottom: -12px;
	right: 3px;
}

#top-picks .pick-item:nth-child(1) .image {
	background-color: #fdc689;
}

#top-picks .pick-item:nth-child(2) .image {
	background-color: #e1e1e1;
}

#top-picks .pick-item:nth-child(3) .image {
	background-color: #c8dcf1;
}

#top-picks .pick-item:nth-child(4) .image {
	background-color: #d5edb2;
}

#top-picks .pick-item a.to-product {
	font-size: 20px;
	font-family: 'assistantbold';
	color: #757575;
	letter-spacing: 1px;
	line-height: 1.3;
	padding: 0 8px;
	min-height: 52px;
	display: block;
}

#top-picks .pick-item a.to-category {
	font-size: 20px;
	color: #c14f12;
	line-height: 1.3;
	font-family: 'assistantlight';
	letter-spacing: 0.5px;
	display: block;
	margin-top: 5px;
	padding: 0 10px;
}

/** location details ends */

/** category landing starts */
#categories {
	margin-top: 10px;
}

#categories .container {
	width: 1190px;
}

.products-landing .category-title {
	font-size: 34px;
	line-height: 36px;
	padding: 0 0;
	font-family: 'assistantbold';
	color: #1d3460;
	margin: 0;
}

#categories .category-title {
	padding: 55px 0;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	margin-bottom: 25px;
}

#categories .category-title .inner {
	border: 1px solid #dadada;
	background-color: rgba(255, 255, 255, .8);
	width: 520px;
	max-width: 100%;
	margin: 0 auto;
	text-align: center;
	padding: 6px 0 25px 0;
}

#categories .category-title .inner .title {
	font-size: 55px;
	color: #1d3460;
	font-family: 'assistantbold';
	letter-spacing: 1px;
	margin-bottom: 20px;
}

#categories .category-title .inner .title span {
	color: #F32739;
	text-transform: lowercase;
}

#categories .category-title .inner a {
	width: 180px;
	height: 55px;
	line-height: 55px;
	text-align: center;
	color: white;
	font-family: 'assistantbold';
	background-color: #F32739;
	font-size: 16px;
	text-transform: uppercase;
	display: inline-block;
}

#categories .category-item {
	margin-bottom: 30px;
}

#categories .category-item a {
	display: block;
	height: 370px;
	border: 1px solid #d7d7d7;
	text-align: center;
}

#categories .category-item a .category-name {
	font-size: 23px;
	color: #F32739;
	font-family: 'assistantbold';
	line-height: 1;
	margin-top: 35px;
}

#categories .category-item a .category-image {
	line-height: 310px;
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	transition: all 0.3s linear;
}

#categories .category-item a .category-image img {
	max-width: 100%;
	max-height: 305px;
}

#categories .category-item a:hover img {
	opacity: 0.5;
}

#categories .category-item a .category-image {}

#categories .category-item a:hover .category-image {
	line-height: 245px;
}

#categories .category-item a .category-image span {
	position: absolute;
	bottom: -65px;
	left: 15px;
	height: 65px;
	width: calc(100% - 30px);
	line-height: 65px;
	text-transform: uppercase;
	font-size: 18px;
	color: white;
	font-family: 'assistantbold';
	text-align: center;
	background-color: #F32739;
	z-index: 2;
	transform: all .3s;

}

#categories .category-item a:hover .category-image span {
	bottom: 0;
}

#bottom-about {
	margin-bottom: 40px;
}

#bottom-about hr {
	border-color: #cccccc;
	margin-top: 5px;
}

#bottom-about p strong {
	font-size: 18px;
	font-family: 'assistantbold';
}

#bottom-about p {
	color: #757575;
	font-size: 16px;
	line-height: 1.3;
	margin-bottom: 20px;
}

#category-featured {}

#category-featured .title {
	font-size: 40px;
	color: #F32739;
	text-align: center;
	font-family: 'titan_oneregular';
	margin-bottom: 25px;
}

#category-featured .featured-header {
	color: white;
	background-color: #F32739;
	font-size: 0;
	height: 100px;
	padding: 15px 20px;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-align-content: stretch;
	-ms-flex-line-pack: stretch;
	align-content: stretch;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

#category-featured .featured-header .featured-name {
	font-size: 22px;
	line-height: 24px;
	font-family: 'assistantbold';
	display: inline-block;
	vertical-align: middle;
	width: 53%
}

#category-featured .featured-header .featured-price {
	display: inline-block;
	vertical-align: middle;
	width: 47%;
	font-size: 54px;
	font-family: 'titan_oneregular';
	text-align: right;
	color: white;
	line-height: 1;
}

#category-featured .featured-header .featured-price>span {
	font-size: 30px;
	display: inline-block;
	vertical-align: super;
	position: relative;
}

#category-featured .featured-header .featured-price span.smaller {
	font-size: 15px;
	font-family: 'assistantregular';
	position: absolute;
	right: 2px;
	bottom: -14px;
	margin-right: -3px;
}

#category-featured .featured-image {
	line-height: 1;
	height: 230px;
	border: 1px solid #cccccc;
	border-top: 0;
	text-align: right;
	margin-bottom: 30px;
}

#category-featured .featured-image img {
	max-width: 100%;
}

/** category landing ends */

/** 5 star starts */
#rate {
	margin-top: 35px;
	margin-bottom: 80px;
}

#rate>.container {}

#rate>.container>.inner {
	min-height: 575px;
	width: 930px;
	max-width: 100%;
	margin: 0 auto;
	border: 1px solid #e1e1e1;
	padding-bottom: 80px;
}

#rate>.container>.inner .title {
	padding: 45px 0 0 0;
}

#rate>.container>.inner .title h1 {
	font-size: 56px;
	color: #F32739;
	font-family: 'titan_oneregular';
	margin: 0 0 20px 0;
}

#rate>.container>.inner .title p {
	font-size: 20px;
	line-height: 24px;
	color: #1d3460;
	margin: 0 auto;
	width: 740px;
	max-width: 100%;
}

#rate>.container>.inner .stars ul {
	font-size: 0;
	margin-top: 25px;
	padding: 0;
}

#rate>.container>.inner .stars ul li {
	margin: 0 15px;
	vertical-align: middle;
	padding: 0;
	padding-left: 0;
	padding-right: 0;
}

#rate>.container>.inner .stars ul li a {
	display: block;
	position: relative;
	width: 87px;
	height: 82px;
}

#rate>.container>.inner .stars ul li a img.to-hover {
	position: absolute;
	left: 0;
	top: 0;
}

#rate .stars ul li:nth-child(1) a {
	-webkit-animation-delay: 0s;
}

#rate .stars ul li:nth-child(2) a {
	-webkit-animation-delay: 0.15s;
}

#rate .stars ul li:nth-child(3) a {
	-webkit-animation-delay: 0.3s;
}

#rate .stars ul li:nth-child(4) a {
	-webkit-animation-delay: 0.45s;
}

#rate .stars ul li:nth-child(5) a {
	-webkit-animation-delay: 0.6s;
}

#rate .stars ul li.shake:nth-child(1) a img {
	-webkit-transition-delay: 0s;
	/* Safari */
	transition-delay: 0s;
}

#rate .stars ul li.shake:nth-child(2) a img {
	-webkit-transition-delay: 0.15s;
	/* Safari */
	transition-delay: 0.15s;
}

#rate .stars ul li.shake:nth-child(3) a img {
	-webkit-transition-delay: 0.3s;
	/* Safari */
	transition-delay: 0.3s;
}

#rate .stars ul li.shake:nth-child(4) a img {
	-webkit-transition-delay: 0.45s;
	/* Safari */
	transition-delay: 0.45s;
}

#rate .stars ul li.shake:nth-child(5) a img {
	-webkit-transition-delay: 0.6s;
	/* Safari */
	transition-delay: 0.6s;
}

#rate .stars ul li:not(.clicked) img.to-hover,
#rate.loaded .stars .loaded ul li img.outline,
#rate .stars.loaded ul li img.outline,
#rate:not(.done) .stars ul li img.to-load {
	opacity: 0;
	visibility: hidden;
}

#rate .stars ul li.shake a img.to-hover {
	opacity: 1;
	visibility: visible;
}

#rate .stars ul li.shake a {
	-webkit-animation-name: spaceboots;
	-webkit-animation-duration: 0.2s;
	-webkit-transform-origin: 50% 50%;
	-webkit-animation-iteration-count: 1;
	-webkit-animation-timing-function: linear;
}

@-webkit-keyframes spaceboots {
	0% {
		-moz-transform: scale(1.1);
		-webkit-transform: scale(1.1);
		-o-transform: scale(1.1);
		-ms-transform: scale(1.1);
		transform: scale(1.1);
	}

	100% {
		-moz-transform: scale(1.1);
		-webkit-transform: scale(1.1);
		-o-transform: scale(1.1);
		-ms-transform: scale(1.1);
		transform: scale(1.1);
	}

}

#rate,
#rate form#rate-form,
#rate .after-form {
	-webkit-transition: all 0.5s, opacity 1.5s, top 0.5s linear;
	-moz-transition: all 0.5s, opacity 1.5s, top 0.5s linear;
	-ms-transition: all 0.5s, opacity 1.5s, top 0.5s linear;
	-o-transition: all 0.5s, opacity 1.5s, top 0.5s linear;
	transition: all 0.5s, opacity 1.5s, top 0.5s linear;
}

#rate form#rate-form {
	padding-top: 60px;
	width: 900px;
	max-width: 100%;
	margin: 0 auto;
	font-size: 0;
	position: relative;
	top: -283px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	margin-bottom: -283px;
	z-index: 0;
}

#rate.click form#rate-form {
	top: 0;
	margin-bottom: 0;
	opacity: 1;
	visibility: visible;
	pointer-events: all;
}

#rate form#rate-form>div {
	width: 25%;
	padding: 0 12px;
	display: inline-block;
	vertical-align: top;
	text-align: left;
}

#rate form#rate-form>div label {
	display: block;
	margin: 0 0 0px 0;
	padding: 0;
	font-size: 16px;
	font-family: 'assistantbold';
	font-weight: 400;
	color: #737373;
}

#rate form#rate-form>div input,
#rate form#rate-form>div select {
	width: 100%;
	background-color: white;
	height: 55px;
	color: #737373;
	line-height: 1;
	padding: 0 15px;
	border: 1px solid #d7d7d7;
	font-size: 18px;
	color: #666666;
	border-radius: 0;
	-webkit-border-radius: 0;
	font-family: 'assistantsemibold';
}

select::-ms-expand {
	display: none;
}

select {
	-webkit-appearance: none;
	appearance: none;
}

select {
	background-image: url(../images/selectric.png);
	background-repeat: no-repeat;
	background-position: calc(100% - 20px) 50%;
}

label.hide {
	display: block !important;
}

.dont-show {
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
}

#rate form#rate-form>div .selectric .label {
	padding: 0 15px;
	font-weight: 400;
	background-image: url(../images/selectric.png);
	background-repeat: no-repeat;
	background-position: calc(100% - 20px) 50%;
	width: 100%;
	background-color: white;
	height: 45px;
	color: #737373;
	line-height: 45px;
	padding: 0 15px;
	border: 1px solid #d7d7d7;
	font-size: 18px;
	color: #666666;
	border-radius: 0;
	-webkit-border-radius: 0;
	font-family: 'assistantsemibold';
	margin: 0;
	text-align: left;
}

#rate input[type="submit"] {
	margin: 15px auto 0 auto;
	display: block;
	width: 200px;
	max-width: 100%;
	text-align: center;
	font-size: 20px;
	text-transform: uppercase;
	background-color: white;
	border: 0;
	color: #fff !important;
	background-color: #F32739;
	height: 55px;
	font-family: 'assistantbold';
}

#rate input[type="submit"]:hover {
	background-color: #e25e18;
}

#rate .step:not(.active) {
	display: none;
}

#rate .step {
	height: auto;
	-webkit-transition: all 1s linear;
	-moz-transition: all 1s linear;
	-ms-transition: all 1s linear;
	-o-transition: all 1s linear;
	transition: all 1s linear;
}

#rate .final-form textarea {
	max-width: 100%;
	display: block;
	width: 525px;
	background-color: white;
	height: 160px;
	color: #333333;
	line-height: 1;
	padding: 15px 15px;
	border: 1px solid #d7d7d7;
	font-size: 18px;
	color: #666666;
	border-radius: 0;
	-webkit-border-radius: 0;
	font-family: 'assistantregular';
	margin: 0 auto;
}

#rate .final-form label {
	display: block;
	margin: 25px 0 5px 0;
	padding: 0;
	font-size: 20px;
	font-family: 'assistantbold';
	font-weight: 400;
	color: #F32739;
	text-align: center;
}

#rate .after-form h1 {
	margin-top: 35px !important;
	margin-bottom: 15px !important;
}

#rate .after-form p {
	line-height: 26px !important;
	color: #737373 !important;
	font-family: 'assistantbold'
}

#rate.submitted .stars ul,
#rate.submitted .stars ul li,
#rate.submitted .stars ul li a {
	pointer-events: none;
}

#rate .step[rel="4"] .after-form {
	margin-top: 20px;
}

#rate .step[rel="4"] .after-form h1 img,
#rate .step[rel="5"] .after-form h1 img {
	margin: 0 -20px 0 -40px;
	vertical-align: bottom;
}

#rate .step[rel="4"] .after-form h1 span {
	position: relative;
}

#rate .step[rel="4"] .after-form h1 span:first-child:before {
	background-image: url(../images/4-stars-left.png);
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: -30px;
	width: 58px;
	height: 32px;
	background-repeat: no-repeat;
	background-position: center;
}


.single_page_blog img {

	height: 400px;
	object-fit: cover;
	margin-top: 30px;
}

#rate .step[rel="4"] .after-form h1 span:last-child:after {
	background-image: url(../images/4-stars-right.png);
	content: "";
	display: block;
	position: absolute;
	right: 0;
	top: -30px;
	width: 58px;
	height: 32px;
	background-repeat: no-repeat;
	background-position: center;
}

#rate .step[rel="5"] .after-form {
	padding-top: 30px;
}

#rate .step[rel="5"] .after-form h1 {
	position: relative;
}

#rate .step[rel="5"] .after-form h1:before {
	content: "";
	left: 50%;
	margin-left: -307.5px;
	z-index: -2;
	top: 30px;
	width: 615px;
	height: 205px;
	position: absolute;
	display: block;
	background-image: url(../images/5-stars.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

#rate .star-social {
	width: 710px;
	max-width: 100%;
	margin: 25px auto 0 auto;
}

#rate .star-social ul {
	padding: 0;
	margin: 0;
	font-size: 0;
}

#rate .star-social ul li {
	width: 50%;
	padding: 0 7.5px;
}

#rate .star-social ul li:nth-child(1) a {
	background-color: #3b5998;
}

#rate .star-social ul li a i {
	font-size: 70px;
	display: inline-block;
	vertical-align: middle;
	margin-right: 15px;
	color: white;
}

#rate .star-social ul li a p {
	vertical-align: middle;
	display: inline-block;
	font-size: 20px !important;
	line-height: 29px !important;
	color: white !important;
	width: calc(100% - 148px) !important;
	text-transform: uppercase;
	font-family: 'assistantextrabold';
}

#rate .star-social ul li a p span {
	font-size: 29px;
	line-height: 31px;
	display: block;
}

#rate .star-social ul li:nth-child(2) a {
	background-color: #dd4b39;
}

#rate .star-social ul li a {
	display: block;
	font-size: 0;
	text-align: left;
	padding: 10px 15px 10px 50px;
	color: white;
}

#rate .continue-shopping {
	margin: 15px auto 0 auto;
	display: block;
	width: 240px;
	max-width: 100%;
	text-align: center;
	font-size: 20px;
	text-transform: uppercase;
	background-color: white;
	border: 0;
	color: #fff !important;
	background-color: #F32739;
	height: 55px;
	line-height: 55px;
	font-family: 'assistantbold';
}

#rate .continue-shopping:hover {
	background-color: #e25e18;
}

#rate.thanks .inner {
	padding-bottom: 60px;
	padding-top: 0;
	min-height: 0;
}

/** 5 star ends */

/** homepage starts */
#split {
	margin-bottom: 40px;
}

#split .container {
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-align-content: stretch;
	-ms-flex-line-pack: stretch;
	align-content: stretch;
	-webkit-align-items: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
}

#split .inner {
	background-color: white;
	padding: 70px 15px 70px 15px;
	height: 100%;
}

#split .inner>div {
	width: 455px;
	max-width: 100%;
	margin: 0 auto;
}

#split .container {
	padding: 30px 15px;
	background-image: url(../images/bg.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	border: 1px solid #dadada;
}

#split h2 {
	font-size: 44px;
	color: #F32739;
	line-height: 1;
	font-family: 'assistantbold';
	margin: 0 0 10px 0;
}

#split p {
	font-size: 25px;
	line-height: 30px;
	color: #757575;
	margin: 0;
}

#split form {
	margin-top: 20px;
	font-size: 0;
	position: relative;
}

#split .left form input[type="submit"] {
	background-image: url(../images/icon-mail.png);
}

#split .selectric {
	border: 0;
	border-radius: 0;
	background: transparent;
	position: relative;
	overflow: hidden;
	text-align: left;
}

#split .selectric-items {
	text-align: left;
}

#split .selectric .button {
	display: none;
}

#split form input:not([type="submit"]), #split .selectric .label {
	height: 46px;
	width: calc(100% - 46px);
	vertical-align: top;
	border: 1px solid #d7d7d7;
	border-right: 0;
	font-size: 17px;
	font-family: 'assistantsemibold';
	padding: 0 15px;
	margin: 0;
	text-align: left;
	border-radius: 0;
	-webkit-border-radius: 0;
	font-weight: 400;
	color: #717171;
}

#split .selectric .label {
	background-image: url(../images/selectric.png);
	background-repeat: no-repeat;
	background-position: calc(100% - 15px) 50%;
}

#split .selectric-wrapper {
	width: calc(100% - 46px);
	display: inline-block;
	vertical-align: top;
}

#split .selectric .label {
	line-height: 46px;
	width: 100%;
}

#split form input[type="submit"] {
	height: 46px;
	width: 46px;
	vertical-align: top;
	background-color: #F32739;
	background-repeat: no-repeat;
	background-position: center;
	border: 0;
}

#split select {
	border: 1px solid #d7d7d7;
	font-family: 'assistantsemibold';
	font-size: 17px;
	color: #777777;
	flex-grow: 1;
	padding: 0 15px;
}

#split .right {
	text-align: right;
}

#split .right .inner {
	padding-top: 100px;
}

#split .right form input[type="submit"] {
	font-size: 16px;
	font-family: 'assistantextrabold';
	color: #ffffff;
	text-align: center;
}

#split .right form:before {
	content: "";
	display: block;
	width: 107px;
	height: 122px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-image: url(../images/location-icon.png);
	position: absolute;
	left: 0;
	top: -140px;
}

#split .left .inner {
	background-image: url(../images/newsletter-stars.png);
	background-repeat: no-repeat;
	background-position: 100% 10px;
}

.featured-categories {
	text-align: center;
	font-size: 0;
}

.featured-categories .title {
	line-height: 1;
	font-size: 33px;
	font-family: 'assistantlight';
	color: #1d3460;
	margin-bottom: 40px;
}

.featured-categories .featured {
	display: inline-block;
	vertical-align: bottom;
	float: none;
	margin-bottom: 50px;
}

.featured-categories .featured img {
	max-width: 100%;
}

.featured-categories a p {
	font-size: 20px;
	font-family: 'assistantbold';
	color: #757575;
	margin: 10px 0 0 0;
}

#hero .container {
	min-height: 330px;
}

#hero .container>div,
#hero .container>div>div {
	height: 100%;
}

#hero .container {
	padding: 0 10px;
}

#hero .left {
	height: 100%;
	padding: 0 5px;
}

#hero .left .inner {
	background-image: url(../images/hero-main.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	height: 100%;
	letter-spacing: 0.5px;
	padding: 30px 40px;
}

#hero .left .inner:before {
	content: "";
	z-index: 0;
	display: block;
	width: 627px;
	height: 324px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: absolute;
	right: 40px;
	bottom: 15px;
	background-image: url(../images/hero-main.png);
}

#hero .left .inner:after {
	content: "";
	z-index: 0;
	display: block;
	width: 108px;
	height: 142px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: absolute;
	right: 75px;
	bottom: 25px;
	background-image: url(../images/icon-dude-large.png);
}

#hero .left .inner h1 {
	font-size: 68px;
	line-height: 1;
	font-family: 'bree_serifregular';
	color: #ffffff;
	margin: 0 0 5px 0;
	letter-spacing: 1px;
	text-transform: uppercase;
	position: relative;
}

#hero .left .inner p {
	font-size: 44px;
	line-height: 1;
	font-family: 'assistantextralight';
	color: #ffffff;
	margin: 0;
	position: relative;
}

#hero .left .inner p strong {
	font-family: 'assistantextrabold';
}

#hero .left .inner a {
	font-size: 18px;
	font-family: 'assistantbold';
	color: #ffffff;
	width: 190px;
	height: 55px;
	background-color: #F32739;
	display: block;
	line-height: 55px;
	text-align: center;
	margin-top: 20px;
	position: relative;
}

#hero .right {
	padding: 0 5px;
	height: 100%;
}

#hero .right .top,
#hero .right .bottom {
	height: calc(50% - 5px);
}

#hero .right a {
	display: block;
	height: 100%;
	color: white;
	padding: 10px 15px;
}

#hero .right .top {
	margin-bottom: 10px;
}

#hero .right .top .inner {
	background-color: #679dec;
	height: 100%;
}

#hero .right .bottom .inner {
	background-color: #F32739;
	height: 100%;
}

#hero .right h3 {
	margin: 0;
}

#hero .right .top h3 {
	font-size: 26px;
	line-height: 1.3;
	text-transform: uppercase;
	font-family: 'assistantbold';
}

#hero .right p {
	font-size: 17px;
	line-height: 20px;
	font-family: 'assistantlight';
}

#hero .right p strong {
	font-family: 'assistantbold';
}

#hero .right .bottom h3 {
	font-size: 20px;
	text-transform: uppercase;
	line-height: 22px;
	font-family: 'assistantbold';
}

#hero .right .top .inner {
	background-position: 50% 110%;
	background-repeat: no-repeat;
	background-image: url(../images/hero-right.png);
	font-size: 0;
}

#hero .right .inner-left {
	width: 50%;
	display: inline-block;
	vertical-align: middle;
}

#hero .right .inner-right {
	width: 50%;
	display: inline-block;
	vertical-align: top;
}

#hero .right .hero-price {
	vertical-align: top;
	color: #F32739;
	font-size: 0;
	font-family: 'titan_oneregular';
	color: #fff;
	line-height: 1;
	position: relative;
	text-align: left;
	padding-left: 5px;
}

#hero .right .bottom .hero-price {
	padding-left: 0;
}

#hero .right .hero-price>div {
	font-size: 41px;
}

#hero .right .hero-price span {
	font-size: 23px;
	display: inline-block;
	vertical-align: super;
	position: relative;
}

#hero .right .hero-price span.small {
	font-size: 20px;
}

#hero .right .hero-price span.smaller {
	font-size: 11.5px;
	font-family: 'assistantregular';
	position: absolute;
	right: 5px;
	bottom: -10px;
	margin-right: -5px;
	white-space: nowrap;
}

#hero .right .bottom .inner {
	background-position: 94% 94%;
	background-repeat: no-repeat;
	background-image: url(../images/hero-right-bottom.png);
	font-size: 0;
}

#hero .right .bottom .inner .inner-left {
	padding: 0;
	margin-top: 40px;
}

#under-hero .inner {
	padding: 30px 35px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-image: url(../images/bg.jpg);
	margin-top: 10px;
	border: 1px solid #dadada;
	position: relative;
}

#under-hero .inner:after {
	content: "";
	display: block;
	position: absolute;
	right: 50px;
	bottom: 0;
	background-image: url(../images/under-hero.png);
	background-repeat: no-repeat;
	width: 361px;
	height: 96px;
}

#under-hero p {
	font-size: 33px;
	color: #1d3460;
	letter-spacing: 0.5px;
	margin: 0;
	font-family: 'assistantbold';
}

#under-hero a {
	font-size: 16px;
	font-family: 'assistantbold';
	color: #ffffff;
	width: 130px;
	height: 55px;
	background-color: var(--brand-orange);
	display: inline-block;
	line-height: 55px;
	vertical-align: middle;
	text-align: center;
	margin-left: 15px;
	position: relative;
	text-transform: uppercase;
}

/** homepage ends */

/** coupon starts */
#coupon-popup {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	padding: 0 15px;
	z-index: 99;
	overflow: auto;
}

#coupon-popup>.inner:after {
	content: "";
	display: block;
	background-image: url(../images/scissor.png);
	background-repeat: no-repeat;
	background-position: center;
	width: 101px;
	height: 71px;
	position: absolute;
	right: 73px;
	top: -21px;
}

#coupon-popup>.inner {
	width: 600px;
	max-width: 100%;
	position: relative;
	margin: 30px auto 0 auto;
	-webkit-box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.35);
	box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.35);
	padding: 10px;
	background-image: url(../images/coupon-bg.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

#coupon-popup>.inner>div {
	padding: 7px;
	background-color: #F32739;
}

#coupon-popup>.inner>div .border {
	border: 1px dashed white;
	position: relative;
}

#coupon-popup>.inner>div .border a.popup-closer {
	position: absolute;
	font-size: 22px;
	color: white;
	right: 6px;
	top: 2px;
	display: block;
	cursor: pointer;
	font-family: 'assistantbold';
}

#coupon-popup .title {
	margin-top: 15px;
	font-size: 50px;
	line-height: 1;
	color: white;
	font-family: 'assistantlight';
	text-align: center;
	text-transform: uppercase;
	margin-bottom: 15px;
}

#coupon-popup .title strong {
	display: block;
	font-size: 74px;
	line-height: 50px;
	color: white;
	font-family: 'assistantextrabold';
}

#coupon-popup p {
	text-align: center;
	font-size: 22px;
	line-height: 24px;
	color: #1d3460;
	font-family: 'assistantsemibold';
	margin: 0 auto 15px auto;
	width: 420px;
	max-width: 100%;
}

#coupon-popup form {
	width: 430px;
	max-width: 100%;
	margin: 0 auto 15px auto
}

#coupon-popup .col-sm-6,
#coupon-popup .col-sm-12 {
	padding: 0 7.5px;
}

#coupon-popup form input,
#coupon-popup form select {
	width: 100%;
	max-width: 100%;
	margin: 0;
	border: 0;
	background-color: #ffffff;
	padding: 0 10px;
	font-size: 18px;
	font-family: 'assistantsemibold';
	color: #737373;
	margin-bottom: 15px;
	height: 35px;
}

#coupon-popup form select {
	background-image: url(../images/dropp@2x.png);
	background-repeat: no-repeat;
	background-position: calc(100% - 10px) center;
	background-size: 11px 7px;
	border-radius: 0;
	-webkit-appearance: none;
}

#coupon-popup form input[type="submit"] {
	height: 50px;
	font-size: 16px;
	color: white;
	background-color: #203d73;
	font-family: 'assistantbold';
	text-transform: uppercase;
}

#coupon-popup form a {
	font-size: 18px;
	color: #ffffff;
	text-decoration: unset;
	display: inline-block;
	margin: 0 15px;
}

/** coupon ends */
.product-image-listing {
	max-width: 258px;
	max-height: 170px;
}

/** new contact */
#new-contact {
	padding: 40px 0;
}

#contact-thanks .container {
	padding-bottom: 50px;
}

#new-contact .container {
	width: 1010px;
}

#new-contact .left .title {
	color: #F32739;
	font-family: 'assistantextrabold';
	font-size: 34.74px;
	text-transform: uppercase;
	margin-bottom: 10px;
}

#new-contact .left,
#new-contact .right {
	float: left;
}

#new-contact .left {
	width: 57%;
	padding: 0 0 0 0;
}

#new-contact .left form {
	padding-top: 15px;
	padding-right: 30px;
	border-right: 1px solid #cccccc;
}

#new-contact .left .col-sm-12,
#new-contact .left .col-sm-6 {
	padding: 0 10px;
}

#new-contact .left form input,
#new-contact .left form textarea,
#new-contact .left form select {
	height: 55px;
	line-height: 1;
	padding: 0 20px;
	border: 1px solid #cccccc;
	font-size: 17px;
	font-family: 'assistantsemibold';
	color: #777777;
	width: 100%;
	margin-bottom: 20px;
}

#new-contact .left form input[type="submit"] {
	background-color: #F32739;
	color: white;
	text-align: center;
	font-family: 'assistantextrabold';
	color: #ffffff;
	font-size: 20px;
	border: 0;
}

#new-contact .left form textarea {
	height: 160px;
	padding: 20px;
}

#new-contact .right {
	width: 43%;
	padding: 0 0 0 40px;
}

#new-contact .right h3 {
	font-family: 'assistantbold';
	color: #F32739;
	margin: 60px 0 5px 0;
	font-size: 34.74px;
}

#new-contact .right p {
	font-size: 20px;
	font-family: 'assistantlight';
	color: #757575;
	margin: 0;
	line-height: 28px;
}

#new-contact .phone-cta a {
	display: block;
	text-decoration: unset;
	font-size: 0;
	margin-bottom: 30px;
	margin-top: 30px;
}

#new-contact .phone-cta a .image {
	display: inline-block;
	vertical-align: middle;
	height: 60px;
	width: 60px;
	background-color: #F32739;
	background-image: url(../images/icon-white-phone.png);
	background-repeat: no-repeat;
	background-position: center;
}

#new-contact .phone-cta a .content {
	width: calc(100% - 60px);
	padding-left: 20px;
	display: inline-block;
	vertical-align: middle;
}

#new-contact .phone-cta a .content p {
	font-size: 28px;
	color: #737373;
	font-family: 'assistantsemibold';
}

#new-contact .phone-cta a .content p strong {
	display: block;
	margin-bottom: 5px;
	font-size: 35px;
	font-family: 'assistantextrabold';
	color: #F32739;
}

.stars-cta {
	padding: 20px 20px 15px 20px;
	background-image: url(../images/blue-stripes.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	text-align: center;
	text-decoration: unset;
}

.stars-cta .title {
	font-size: 28px;
	color: #ffffff;
	font-family: 'titan_oneregular';
}

.stars-cta a:not(:hover) .hover, .stars-cta a:hover .default {
	display: none;
}

.stars-cta a img {
	max-width: 100%;
}

.stars-cta hr {
	margin: 12px 0 5px 0;
	border-color: #F32739;
}

.contact-divider {
	background-color: #cccccc;
	width: 1200px;
	max-width: calc(100% - 30px);
	margin: 0 auto 40px auto;
	height: 1px;
}

#why .container {
	width: 1110px !important;

}

/* .container {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    position: relative;
    width: 1230px;
    display: flex;
} */
#why .promise {
	display: inline-block;
	padding: 0 30px;
	text-align: center;
	vertical-align: top;
	width: calc(100% - 681px);
}

#why .table {
	display: inline-block;
	margin-bottom: 0;
	max-width: 100%;
	vertical-align: top;
	width: 681px;
}

#why .container .inner .title {
	color: #F32739;
	font-family: titan_oneregular;
	font-size: 40px;
	line-height: 1;
	margin-bottom: 25px;
	text-align: center;
}

#why .container .inner {
	background-image: url(http://127.0.0.1:8000/themes/majik/css/../images/bg.png);
	background-position: 50%;
	background-size: cover;
	border: 1px solid #dadada;
	font-size: 0;
	padding: 25px 0 0 55px;
}


#blog .left {
	float: left;
	padding: 0;
	width: 235px;
}

.sidebar {
	width: 23.333333333%;
}

.left {
	float: left;
}

#blog .sidebar .sidebar-form {
	margin-top: 60px;
}

.sidebar .sidebar-form {
	margin-top: 20px;
	padding: 0 10px;
}

.sidebar .sidebar-form>div {
	background-color: #1d3460;
	background-image: url(http://127.0.0.1:8000/themes/majik/css/../images/stars.png);
	background-position: 100% 5px;
	background-repeat: no-repeat;
	color: #fff;
	padding: 60px 20px 55px;
}

.sidebar .sidebar-form .title {
	color: #F32739;
	font-family: assistantbold;
	font-size: 34px;
	line-height: 35px;
	margin-bottom: 10px;
}

.sidebar .sidebar-form p {
	color: #fff;
	font-size: 16px;
	line-height: 1.3;
	margin-bottom: 15px;
}

form {
	display: block;
	margin-top: 0em;
}

.sidebar .sidebar-form form input {
	height: 46px;
	width: 100%;
}

button, input, select, textarea {
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
}

.sidebar .sidebar-form form input[type=submit] {
	background-color: #F32739;
	border: 0;
	color: #fff;
	font-family: assistantbold;
	font-size: 15px;
	margin-bottom: 0;
	padding: 0;
	text-align: center;
}


.sidebar .sidebar-form form input[type=email] {
	border: 1px solid #d7d7d7;
	color: #000;
	font-family: assistantsemibold;
	font-size: 15px;
	margin-bottom: 20px;
	padding: 0 15px;
}

.sidebar .sidebar-form form input[type=text] {
	border: 1px solid #d7d7d7;
	color: #000;
	font-family: assistantsemibold;
	font-size: 15px;
	margin-bottom: 20px;
	padding: 0 15px;
}

form#newsletterForm div {
	display: inline;
}

#blog {
	margin-top: 20px !important;
}

/*
@media (min-width: 1200px){
.container {
    width: 1170px;
}

}

@media (min-width: 992px){
.container {
    width: 970px;
}
}
@media (min-width: 768px){
.container {
    width: 1000px;
}
}
*/
@media screen and (max-width: 767px) {
	#blog .right {
		float: none;
		max-width: 100%;
		padding-left: 0;
		padding-right: 0;

		width: 100%;
	}

	.default-content .pull-right .right {
		display: flex !important;
		align-items: center !important;
		flex-wrap: wrap !important;
	}

}

@media screen and (max-width: 767px) {
	#blog .left {
		float: none;
		padding: 0;
		width: 100%;

	}
}